diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-27 12:29:19 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-27 12:29:19 +0000 |
commit | 893604f08ab37ffbd4c82a259c0f2ba5cd7c0547 (patch) | |
tree | aec72522aad576890ca2fbf021ca73c85b4a4c8a | |
parent | 026670ff6b9e1248a3697ae278ee5c2c5f6813a0 (diff) | |
download | gcc-893604f08ab37ffbd4c82a259c0f2ba5cd7c0547.tar.gz |
* a-filico.ads, a-filico.adb: fix incorrect header.
* a-ststio.ads: Fix typo in identifier
* sem_ch4.adb: Minor reformatting.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89644 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ada/a-filico.adb | 4 | ||||
-rw-r--r-- | gcc/ada/a-filico.ads | 4 | ||||
-rw-r--r-- | gcc/ada/a-ststio.ads | 4 | ||||
-rw-r--r-- | gcc/ada/sem_ch4.adb | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/gcc/ada/a-filico.adb b/gcc/ada/a-filico.adb index 7f953bff653..87272802d14 100644 --- a/gcc/ada/a-filico.adb +++ b/gcc/ada/a-filico.adb @@ -2,11 +2,11 @@ -- -- -- GNAT COMPILER COMPONENTS -- -- -- --- S Y S T E M . L I S T _ F I N A L I Z A T I O N -- +-- A D A . F I N A L I Z A T I O N . L I S T _ C O N T R O L L E R -- -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2003 Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2004 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- -- diff --git a/gcc/ada/a-filico.ads b/gcc/ada/a-filico.ads index 4263b260cd3..b3affda0456 100644 --- a/gcc/ada/a-filico.ads +++ b/gcc/ada/a-filico.ads @@ -4,9 +4,9 @@ -- -- -- A D A . F I N A L I Z A T I O N . L I S T _ C O N T R O L L E R -- -- -- --- B o d y -- +-- S p e c -- -- -- --- Copyright (C) 1992-1997 Free Software Foundation, Inc. -- +-- Copyright (C) 1992-1997, 2004 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- -- diff --git a/gcc/ada/a-ststio.ads b/gcc/ada/a-ststio.ads index 6a3ff556f08..11040face21 100644 --- a/gcc/ada/a-ststio.ads +++ b/gcc/ada/a-ststio.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2001 Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2004 Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- @@ -51,7 +51,7 @@ package Ada.Streams.Stream_IO is -- used in this package and System.File_IO. for File_Mode use - (In_File => 0, -- System.FIle_IO.File_Mode'Pos (In_File) + (In_File => 0, -- System.File_IO.File_Mode'Pos (In_File) Out_File => 2, -- System.File_IO.File_Mode'Pos (Out_File) Append_File => 3); -- System.File_IO.File_Mode'Pos (Append_File) diff --git a/gcc/ada/sem_ch4.adb b/gcc/ada/sem_ch4.adb index a63d78e04e8..b71e1f9aaeb 100644 --- a/gcc/ada/sem_ch4.adb +++ b/gcc/ada/sem_ch4.adb @@ -1603,7 +1603,7 @@ package body Sem_Ch4 is then U_N := Entity (P); - if Ekind (U_N) in Type_Kind then + if Ekind (U_N) in Type_Kind then -- Reformat node as a type conversion |