summaryrefslogtreecommitdiff
path: root/gcc/ada/sinfo-cn.ads
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2011-08-04 08:59:17 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2011-08-04 08:59:17 +0000
commit02437c0cacb17eddda6429a98b379b392a961c05 (patch)
treecfa8db7257b2bde4026bddd7892541ff750257f6 /gcc/ada/sinfo-cn.ads
parent06a352aa5680290db9cc094792b444eec3cbb670 (diff)
downloadgcc-02437c0cacb17eddda6429a98b379b392a961c05.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@177337 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/sinfo-cn.ads')
-rw-r--r--gcc/ada/sinfo-cn.ads7
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ada/sinfo-cn.ads b/gcc/ada/sinfo-cn.ads
index 6460e6c7f4d..c6988f466f2 100644
--- a/gcc/ada/sinfo-cn.ads
+++ b/gcc/ada/sinfo-cn.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 1992-2007, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2011, 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- --
@@ -65,4 +65,9 @@ package Sinfo.CN is
-- on return the Chars field is set to a copy of the contents of the
-- Chars field of the Selector_Name field.
+ procedure Change_Name_To_Procedure_Call_Statement (N : Node_Id);
+ -- Some statements (procedure call statements) are in the form of a name
+ -- and are parsed as such. This routine takes the scanned name as input
+ -- and returns the corresponding N_Procedure_Call_Statement.
+
end Sinfo.CN;