diff options
author | Arnaud Charlet <charlet@adacore.com> | 2019-10-15 10:12:15 +0000 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2019-10-15 12:12:15 +0200 |
commit | 14f020d16d55787f1ddbb8185247ea8dd65dfd9a (patch) | |
tree | ccb5f2a90d0aeced9a58f2b1fe81c3d7a858f46b | |
parent | c30587c0200f52f8845a5aea21bd7bef6cbe0bf4 (diff) | |
download | gcc-14f020d16d55787f1ddbb8185247ea8dd65dfd9a.zip gcc-14f020d16d55787f1ddbb8185247ea8dd65dfd9a.tar.gz gcc-14f020d16d55787f1ddbb8185247ea8dd65dfd9a.tar.bz2 |
Makefile.rtl (a-except.o): Put -O1 earlier so that it can be overriden if needed by other variables.
* Makefile.rtl (a-except.o): Put -O1 earlier so that it can be
overriden if needed by other variables.
From-SVN: r276988
-rw-r--r-- | gcc/ada/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/ada/Makefile.rtl | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index e66f111..e0d4e65 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,8 @@ +2019-10-15 Arnaud Charlet <charlet@adacore.com> + + * Makefile.rtl (a-except.o): Put -O1 earlier so that it can be + overriden if needed by other variables. + 2019-10-12 Eric Botcazou <ebotcazou@adacore.com> PR ada/91995 diff --git a/gcc/ada/Makefile.rtl b/gcc/ada/Makefile.rtl index e5aa6b8..c286701 100644 --- a/gcc/ada/Makefile.rtl +++ b/gcc/ada/Makefile.rtl @@ -2733,8 +2733,8 @@ s-tasdeb.o : s-tasdeb.adb s-tasdeb.ads # use -O1 otherwise gdb isn't able to get a full backtrace on mips targets. a-except.o : a-except.adb a-except.ads - $(ADAC) -c $(ALL_ADAFLAGS) $(FORCE_DEBUG_ADAFLAGS) \ - $(NO_INLINE_ADAFLAGS) $(NO_REORDER_ADAFLAGS) -O1 $(ADA_INCLUDES) \ + $(ADAC) -c $(ALL_ADAFLAGS) -O1 $(FORCE_DEBUG_ADAFLAGS) \ + $(NO_INLINE_ADAFLAGS) $(NO_REORDER_ADAFLAGS) $(ADA_INCLUDES) \ $< $(OUTPUT_OPTION) # Compile s-excdeb.o without optimization and with debug info to let the |