diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-06-22 15:53:46 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-06-22 15:53:46 +0200 |
commit | b0256cb6d28d3121f4bcba03da55979a4a467bd7 (patch) | |
tree | 0c285ad5daaa531e4663b4c3851f4a91cf472cab /gcc/ada/makeusg.adb | |
parent | eeb41f0134d2d2f9f979fac0e0f176e9c3e8a490 (diff) | |
download | gcc-b0256cb6d28d3121f4bcba03da55979a4a467bd7.zip gcc-b0256cb6d28d3121f4bcba03da55979a4a467bd7.tar.gz gcc-b0256cb6d28d3121f4bcba03da55979a4a467bd7.tar.bz2 |
[multiple changes]
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.
From-SVN: r161187
Diffstat (limited to 'gcc/ada/makeusg.adb')
-rw-r--r-- | gcc/ada/makeusg.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/makeusg.adb b/gcc/ada/makeusg.adb index acacba9..7f8ddb6 100644 --- a/gcc/ada/makeusg.adb +++ b/gcc/ada/makeusg.adb @@ -24,8 +24,8 @@ ------------------------------------------------------------------------------ with Makeutl; -with Osint; use Osint; -with Output; use Output; +with Osint; use Osint; +with Output; use Output; with Usage; procedure Makeusg is |