diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-10-11 17:47:23 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-10-11 17:47:23 +0200 |
commit | 1928f45020f103b945190d1a5ae95533ff865722 (patch) | |
tree | 444ab818bb867feee7661eee1e4537161e9429f5 /gcc/ada/debug.adb | |
parent | 40b7ae584b92e8bbeba399490a11db54f1fa4ff1 (diff) | |
download | gcc-1928f45020f103b945190d1a5ae95533ff865722.zip gcc-1928f45020f103b945190d1a5ae95533ff865722.tar.gz gcc-1928f45020f103b945190d1a5ae95533ff865722.tar.bz2 |
[multiple changes]
2010-10-11 Robert Dewar <dewar@adacore.com>
* debug.adb: Remove d.A flag to delay address clause (not needed any
more). Add d.A flag to enable tree read/write of aspect spec hash table
* sem_ch13.adb (Analyze_Aspect_Specifications): Properly delay address
clause.
(Rep_Item_Too_Late): No need for special processing for delayed rep
items (and it caused difficulties in the address case).
* tree_gen.adb: Only write aspect spec hash table if -gnatd.A is set
* tree_in.adb: Only write aspect spec hash table if -gnatd.A is set
2010-10-11 Pat Rogers <rogers@adacore.com>
* gnat_ugn.texi: Minor editing.
From-SVN: r165316
Diffstat (limited to 'gcc/ada/debug.adb')
-rw-r--r-- | gcc/ada/debug.adb | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gcc/ada/debug.adb b/gcc/ada/debug.adb index a22b521..4abd1f5 100644 --- a/gcc/ada/debug.adb +++ b/gcc/ada/debug.adb @@ -118,7 +118,7 @@ package body Debug is -- d.y -- d.z - -- d.A Properly defer address aspect + -- d.A Read/write Aspect_Specifications hash table to tree -- d.B -- d.C Generate concatenation call, do not generate inline code -- d.D @@ -558,11 +558,10 @@ package body Debug is -- d.w This flag turns off the scanning of loops to detect possible -- infinite loops. - -- d.A Properly defer address aspect. In the case where the expression - -- of an address aspect is non-static, we should defer the evaluation - -- of the expression till the freeze point, but this does not seem to - -- work properly. So we have this debug switch temporarily so that we - -- can easily investigate this problem. + -- d.A There seems to be a problem with ASIS if we activate the circuit + -- for reading and writing the aspect specification hash table, so + -- for now, this is controlled by the debug flag d.A. The hash table + -- is only written and read if this flag is set. -- d.x No exception handlers in generated code. This causes exception -- handlers to be eliminated from the generated code. They are still |