diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-04 10:59:17 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-04 10:59:17 +0200 |
commit | 7ab4d95af734d904c16bf4af815e8810546feff6 (patch) | |
tree | cfa8db7257b2bde4026bddd7892541ff750257f6 /gcc/ada/sinfo.adb | |
parent | 51c400f5b8edf0d9c7dd679724fa5114b700cad4 (diff) | |
download | gcc-7ab4d95af734d904c16bf4af815e8810546feff6.zip gcc-7ab4d95af734d904c16bf4af815e8810546feff6.tar.gz gcc-7ab4d95af734d904c16bf4af815e8810546feff6.tar.bz2 |
[multiple changes]
2011-08-04 Tristan Gingold <gingold@adacore.com>
* s-taprop-vxworks.adb (Enter_Task): Use System.Float_Control.Reset
instead of the locally imported procedure.
* s-taprop-mingw.adb (Enter_Task): Ditto.
* s-valrea.adb (Scan_Real): Ditto.
* s-imgrea.adb (Set_Image_Real): Ditto.
* s-flocon.ads: Make the package pure.
2011-08-04 Thomas Quinot <quinot@adacore.com>
* sinfo.ads, sinfo.adb (Debug_Statement, Set_Debug_Statement): Remove.
* tbuild.ads, tbuild.adb (Make_Pragma): Adjust accordingly.
* sinfo-cn.ads, sinfo-cn.adb (Change_Name_To_Procedure_Call_Statement):
New subprogram, moved here from...
* par.adb, par-ch5.adb (P_Statement_Name): ... here.
* par-prag.adb (Par.Prag, case Pragma_Debug): Do not perform any
rewriting of the last argument into a procedure call statement here...
* sem_prag.adb (Analyze_Pragma, case Pragma_Debug): ...do it there
instead.
2011-08-04 Thomas Quinot <quinot@adacore.com>
* par_sco.adb: Minor reformatting.
From-SVN: r177337
Diffstat (limited to 'gcc/ada/sinfo.adb')
-rw-r--r-- | gcc/ada/sinfo.adb | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/ada/sinfo.adb b/gcc/ada/sinfo.adb index 40d8dd6..b225b6b 100644 --- a/gcc/ada/sinfo.adb +++ b/gcc/ada/sinfo.adb @@ -661,14 +661,6 @@ package body Sinfo is return Node5 (N); end Dcheck_Function; - function Debug_Statement - (N : Node_Id) return Node_Id is - begin - pragma Assert (False - or else NT (N).Nkind = N_Pragma); - return Node3 (N); - end Debug_Statement; - function Declarations (N : Node_Id) return List_Id is begin @@ -3712,14 +3704,6 @@ package body Sinfo is Set_Node5 (N, Val); -- semantic field, no parent set end Set_Dcheck_Function; - procedure Set_Debug_Statement - (N : Node_Id; Val : Node_Id) is - begin - pragma Assert (False - or else NT (N).Nkind = N_Pragma); - Set_Node3_With_Parent (N, Val); - end Set_Debug_Statement; - procedure Set_Declarations (N : Node_Id; Val : List_Id) is begin |