diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-05-27 10:14:25 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-05-27 10:14:25 +0000 |
commit | e24843bcaa8ea853207a7162dd3d876feaf799b8 (patch) | |
tree | f8477ecfb2c883ca1bd8ae86692e823bda30959f /gcc/ada/a-direio.adb | |
parent | 9f8bf1ca3a2d61719fb8c9ab3fc48d7727f140c8 (diff) | |
download | gcc-e24843bcaa8ea853207a7162dd3d876feaf799b8.tar.gz |
2008-05-27 Thomas Quinot <quinot@adacore.com>
(System.File_IO.{Close, Delete, Reset}):
Change File parameter from "in out AFCB_Ptr" to "access AFCB_Ptr".
(Ada.*_IO.{Close, Delete, Reset, Set_Mode}):
Pass File parameter by reference.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@136002 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/a-direio.adb')
-rw-r--r-- | gcc/ada/a-direio.adb | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ada/a-direio.adb b/gcc/ada/a-direio.adb index 44479efedfd..69476696a6c 100644 --- a/gcc/ada/a-direio.adb +++ b/gcc/ada/a-direio.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2007, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2008, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -73,8 +73,11 @@ package body Ada.Direct_IO is ----------- procedure Close (File : in out File_Type) is + AFCB : aliased AP; + for AFCB'Address use File'Address; + pragma Import (Ada, AFCB); begin - FIO.Close (AP (File)); + FIO.Close (AFCB'Access); end Close; ------------ @@ -97,8 +100,11 @@ package body Ada.Direct_IO is ------------ procedure Delete (File : in out File_Type) is + AFCB : aliased AP; + for AFCB'Address use File'Address; + pragma Import (Ada, AFCB); begin - FIO.Delete (AP (File)); + FIO.Delete (AFCB'Access); end Delete; ----------------- |