aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1997-09-19 05:21:34 +0000
committerJeff Law <law@gcc.gnu.org>1997-09-18 23:21:34 -0600
commite649372777654464a519ab4067dc34000ed5a68a (patch)
tree258d701d1e1da9926662ee54e70a632fafd193b5 /gcc
parenta79177f5a16af4774fd957456e5d07699ecff531 (diff)
downloadgcc-e649372777654464a519ab4067dc34000ed5a68a.zip
gcc-e649372777654464a519ab4067dc34000ed5a68a.tar.gz
gcc-e649372777654464a519ab4067dc34000ed5a68a.tar.bz2
* Makefile.in (BOOT_CFLAGS): Use -O2.
From-SVN: r15562
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog2
-rw-r--r--gcc/Makefile.in2
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index e0f05a3..9424fd9 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,7 @@
Thu Sep 18 21:13:40 1997 Jeffrey A Law (law@cygnus.com)
+ * Makefile.in (BOOT_CFLAGS): Use -O2.
+
* configure.in (strtoul, bsearch): Have autoconf check for these
functions.
* configure, config.in: Rebuilt.
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index d613020..651d79e 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -58,7 +58,7 @@ ALLOCA_FINISH = true
XCFLAGS =
TCFLAGS =
CFLAGS = -g
-BOOT_CFLAGS = -O $(CFLAGS)
+BOOT_CFLAGS = -O2 $(CFLAGS)
# These exists to be overridden by the x-* and t-* files, respectively.
X_CFLAGS =
T_CFLAGS =