diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-22 13:53:46 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-22 13:53:46 +0000 |
commit | e4563f0dfa7f1b26309630ed0b91ea96cc256755 (patch) | |
tree | 0c285ad5daaa531e4663b4c3851f4a91cf472cab /gcc/ada/vms_data.ads | |
parent | 7be3ddddb3a4b83439bf643e06377ef59565f6ee (diff) | |
download | gcc-e4563f0dfa7f1b26309630ed0b91ea96cc256755.tar.gz |
2010-06-22 Gary Dismukes <dismukes@adacore.com>
* sem_ch5.adb (Analyze_Assignment): Revise test for illegal assignment
to abstract targets to check that the type is tagged and comes from
source, rather than only testing for targets of interface types. Remove
premature return.
2010-06-22 Vincent Celier <celier@adacore.com>
* vms_data.ads: Modify the declarations of qualifiers
/UNCHECKED_SHARED_LIB_IMPORTS to allow the generation of gnat.hlp
without error.
2010-06-22 Ed Schonberg <schonberg@adacore.com>
* exp_ch6.adb (Is_Build_In_Place_Function): Predicate is false if
expansion is disabled.
2010-06-22 Robert Dewar <dewar@adacore.com>
* makeusg.adb: Minor reformatting.
2010-06-22 Robert Dewar <dewar@adacore.com>
* types.ads: (Dint): Removed, no longer used anywhere.
* uintp.adb (UI_From_CC): Use UI_From_Int, range is sufficient.
(UI_Mul): Avoid use of UI_From_Dint.
(UI_From_Dint): Removed, not used.
* uintp.ads (UI_From_Dint): Removed, not used.
(Uint_Min/Max_Simple_Mul): New constants.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161187 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/vms_data.ads')
-rw-r--r-- | gcc/ada/vms_data.ads | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gcc/ada/vms_data.ads b/gcc/ada/vms_data.ads index fdfe19dd59a..5e81a28140c 100644 --- a/gcc/ada/vms_data.ads +++ b/gcc/ada/vms_data.ads @@ -1154,9 +1154,8 @@ package VMS_Data is -- of the directory specified in the project file. If the subdirectory -- does not exist, it is created automatically. - S_Clean_Unc_Shared_Libs : aliased constant S := - "/UNCHECKED_SHARED_LIB_IMPORTS " & - "--unchecked-shared-lib-imports"; + S_Clean_USL : aliased constant S := "/UNCHECKED_SHARED_LIB_IMPORTS " & + "--unchecked-shared-lib-imports"; -- /NOUNCHECKED_SHARED_LIB_IMPORTS (D) -- /UNCHECKED_SHARED_LIB_IMPORTS -- @@ -1188,7 +1187,7 @@ package VMS_Data is S_Clean_Search 'Access, S_Clean_Subdirs'Access, S_Clean_Verbose'Access, - S_Clean_Unc_Shared_Libs'Access); + S_Clean_USL 'Access); ------------------------------- -- Switches for GNAT COMPILE -- @@ -4869,9 +4868,8 @@ package VMS_Data is -- For example, -O -O2 is different than -O2 -O, but -g -O is equivalent -- to -O -g. - S_Make_Unc_Shared_Libs : aliased constant S := - "/UNCHECKED_SHARED_LIB_IMPORTS " & - "--unchecked-shared-lib-imports"; + S_Make_USL : aliased constant S := "/UNCHECKED_SHARED_LIB_IMPORTS " & + "--unchecked-shared-lib-imports"; -- /NOUNCHECKED_SHARED_LIB_IMPORTS (D) -- /UNCHECKED_SHARED_LIB_IMPORTS -- @@ -4954,7 +4952,7 @@ package VMS_Data is S_Make_Stand 'Access, S_Make_Subdirs 'Access, S_Make_Switch 'Access, - S_Make_Unc_Shared_Libs'Access, + S_Make_USL 'Access, S_Make_Unique 'Access, S_Make_Use_Map 'Access, S_Make_Verbose 'Access); |