diff options
Diffstat (limited to 'gcc/ada/lib-xref.adb')
-rw-r--r-- | gcc/ada/lib-xref.adb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gcc/ada/lib-xref.adb b/gcc/ada/lib-xref.adb index eae80ff022c..5afc12bf13f 100644 --- a/gcc/ada/lib-xref.adb +++ b/gcc/ada/lib-xref.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1998-2004, Free Software Foundation, Inc. -- +-- Copyright (C) 1998-2005, 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- -- @@ -261,10 +261,18 @@ package body Lib.Xref is begin pragma Assert (Nkind (E) in N_Entity); + -- Check for obsolescent reference to ASCII + if E = Standard_ASCII then Check_Restriction (No_Obsolescent_Features, N); end if; + -- Warn if reference to Ada 2005 entity not in Ada 2005 mode + + if Is_Ada_2005 (E) and then Ada_Version < Ada_05 then + Error_Msg_NE ("& is only defined in Ada 2005?", N, E); + end if; + -- Never collect references if not in main source unit. However, -- we omit this test if Typ is 'e' or 'k', since these entries are -- really structural, and it is useful to have them in units |