aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/opt.ads
diff options
context:
space:
mode:
authorThomas Quinot <quinot@adacore.com>2010-06-22 09:36:25 +0000
committerArnaud Charlet <charlet@gcc.gnu.org>2010-06-22 11:36:25 +0200
commit125778158bac64ccea58a2156c743fa607545429 (patch)
tree9f819b958fa5cdcdd7d140ae5149fc01169432de /gcc/ada/opt.ads
parenta3da92f99d722d52c0117015f26c5c8640b12511 (diff)
downloadgcc-125778158bac64ccea58a2156c743fa607545429.zip
gcc-125778158bac64ccea58a2156c743fa607545429.tar.gz
gcc-125778158bac64ccea58a2156c743fa607545429.tar.bz2
sem_res.adb (Make_Call_Into_Operator): Use First_Subtype for better error reporting with generic types.
2010-06-22 Thomas Quinot <quinot@adacore.com> * sem_res.adb (Make_Call_Into_Operator): Use First_Subtype for better error reporting with generic types. 2010-06-22 Thomas Quinot <quinot@adacore.com> * bindgen.adb, bindusg.adb, gnatbind.adb, gnat_ugn.texi, opt.ads, osint-b.adb, osint-b.ads, output.adb, output.ads, switch-b.adb, vms_data.ads: Add a new command line switch -A to gnatbind to output the list of all ALI files for the partition. From-SVN: r161153
Diffstat (limited to 'gcc/ada/opt.ads')
-rw-r--r--gcc/ada/opt.ads12
1 files changed, 10 insertions, 2 deletions
diff --git a/gcc/ada/opt.ads b/gcc/ada/opt.ads
index 50625ec..626947b 100644
--- a/gcc/ada/opt.ads
+++ b/gcc/ada/opt.ads
@@ -951,9 +951,17 @@ package Opt is
-- GNATBIND
-- True if output of list of linker options is requested (-K switch set)
- Output_Object_List : Boolean := False;
+ Output_ALI_List : Boolean := False;
+ ALI_List_Filename : String_Ptr;
-- GNATBIND
- -- True if output of list of objects is requested (-O switch set)
+ -- True if output of list of ALIs is requested (-A switch set). List is
+ -- output under the given filename, or standard output if not specified.
+
+ Output_Object_List : Boolean := False;
+ Object_List_Filename : String_Ptr;
+ -- GNATBIND
+ -- True if output of list of objects is requested (-O switch set). List is
+ -- output under the given filename, or standard output if not specified.
Overflow_Checks_Unsuppressed : Boolean := False;
-- GNAT