diff options
author | James E Wilson <wilson@specifixinc.com> | 2004-08-24 21:38:35 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 2004-08-24 14:38:35 -0700 |
commit | c61225e74f3e335969dca15e7af8a70e4c509694 (patch) | |
tree | 00f46cbb9ed81733b78ede23e420b42050d200d4 /gcc | |
parent | 37840132447cb12a15699aab6fc34da9429426c5 (diff) | |
download | gcc-c61225e74f3e335969dca15e7af8a70e4c509694.zip gcc-c61225e74f3e335969dca15e7af8a70e4c509694.tar.gz gcc-c61225e74f3e335969dca15e7af8a70e4c509694.tar.bz2 |
Fix linux make profiledbootstrap.
* Makefile.in (STAGEFEEDBACK_FLAGS_TO_PASS): Remove
-freorder-blocks-and-partition.
From-SVN: r86521
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 785e1b4..ede940e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-08-24 James E Wilson <wilson@specifixinc.com> + + * Makefile.in (STAGEFEEDBACK_FLAGS_TO_PASS): Remove + -freorder-blocks-and-partition. + 2004-08-24 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> PR middle-end/17044 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 4bc56d7..626ba94 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3609,7 +3609,7 @@ STAGEPROFILE_FLAGS_TO_PASS = \ # Files never linked into the final executable produces warnings about missing # profile. STAGEFEEDBACK_FLAGS_TO_PASS = \ - CFLAGS="$(BOOT_CFLAGS) -fprofile-use -freorder-blocks-and-partition" + CFLAGS="$(BOOT_CFLAGS) -fprofile-use" # Only build the C compiler for stage1, because that is the only one that # we can guarantee will build with the native compiler, and also it is the |