diff options
Diffstat (limited to 'gcc/ada/sinfo.adb')
-rw-r--r-- | gcc/ada/sinfo.adb | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/gcc/ada/sinfo.adb b/gcc/ada/sinfo.adb index 400ac42..4a902e8 100644 --- a/gcc/ada/sinfo.adb +++ b/gcc/ada/sinfo.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2016, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2017, 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- -- @@ -2464,14 +2464,6 @@ package body Sinfo is return Flag17 (N); end No_Truncation; - function Non_Aliased_Prefix - (N : Node_Id) return Boolean is - begin - pragma Assert (False - or else NT (N).Nkind = N_Attribute_Reference); - return Flag18 (N); - end Non_Aliased_Prefix; - function Null_Excluding_Subtype (N : Node_Id) return Boolean is begin @@ -5774,14 +5766,6 @@ package body Sinfo is Set_Flag17 (N, Val); end Set_No_Truncation; - procedure Set_Non_Aliased_Prefix - (N : Node_Id; Val : Boolean := True) is - begin - pragma Assert (False - or else NT (N).Nkind = N_Attribute_Reference); - Set_Flag18 (N, Val); - end Set_Non_Aliased_Prefix; - procedure Set_Null_Excluding_Subtype (N : Node_Id; Val : Boolean := True) is begin |