diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2008-03-08 12:44:51 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2008-03-08 12:44:51 +0000 |
commit | 7934d78179a91cf3f2c03ce6c6b2c014ac61fdab (patch) | |
tree | 2c606bc53dbf5581ce09df47cf3fcfa90384d62b /gcc/ada/ada.h | |
parent | 904e4b8d32159b43f5edba2f4723fa2782925d0a (diff) | |
download | gcc-7934d78179a91cf3f2c03ce6c6b2c014ac61fdab.zip gcc-7934d78179a91cf3f2c03ce6c6b2c014ac61fdab.tar.gz gcc-7934d78179a91cf3f2c03ce6c6b2c014ac61fdab.tar.bz2 |
lang.opt (nostdlib): Move around.
* lang.opt (nostdlib): Move around.
* misc.c (gnat_handle_option): Fix formatting.
(gnat_dwarf_name): Move around.
* trans.c (Case_Statement_to_gnu): Fix formatting.
(gnat_to_gnu): Likewise.
* utils.c (aggregate_type_contains_array_p): Likewise.
(create_subprog_decl): Likewise.
From-SVN: r133035
Diffstat (limited to 'gcc/ada/ada.h')
-rw-r--r-- | gcc/ada/ada.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ada/ada.h b/gcc/ada/ada.h index a55d013..5f2191f 100644 --- a/gcc/ada/ada.h +++ b/gcc/ada/ada.h @@ -6,7 +6,7 @@ * * * C Header File * * * - * Copyright (C) 1992-2003 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- * @@ -37,7 +37,7 @@ #define GCC_ADA_H /* Inlined functions in header are preceded by INLINE, which is normally set - to extern inline for GCC, but may be set to static for use in standard + to extern inline for GCC, but may be set to static for use in standard ANSI-C. */ #ifndef INLINE @@ -58,10 +58,10 @@ #define CAT(A,B) ECHO(A)B #endif -/* The following macro definition simulates the effect of a declaration of +/* The following macro definition simulates the effect of a declaration of a subtype, where the first two parameters give the name of the type and subtype, and the third and fourth parameters give the subtype range. The - effect is to compile a typedef defining the subtype as a synonym for the + effect is to compile a typedef defining the subtype as a synonym for the type, together with two constants defining the end points. */ #define SUBTYPE(SUBTYPE,TYPE,FIRST,LAST) \ @@ -70,7 +70,7 @@ CAT (SUBTYPE,__Last) = LAST }; /* The following definitions provide the equivalent of the Ada IN and NOT IN - operators, assuming that the subtype involved has been defined using the + operators, assuming that the subtype involved has been defined using the SUBTYPE macro defined above. */ #define IN(VALUE,SUBTYPE) \ |