diff options
author | Steve Ellcey <sje@cup.hp.com> | 2006-01-26 20:57:03 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2006-01-26 20:57:03 +0000 |
commit | 461d30b272d19ce4302adc953b4d0fca96470dd9 (patch) | |
tree | 1adf2b39f5be8f0555ec2841d6e5b35f87582fea | |
parent | c03abfba16b54d72b0ca4b827e37fc8bc7779de9 (diff) | |
download | gcc-461d30b272d19ce4302adc953b4d0fca96470dd9.zip gcc-461d30b272d19ce4302adc953b4d0fca96470dd9.tar.gz gcc-461d30b272d19ce4302adc953b4d0fca96470dd9.tar.bz2 |
re PR bootstrap/25961 (Mainline failed to bootstrap on ia64)
PR target/25961
* Makefile.in (insn-automata.o): Add -Wno-error flag.
From-SVN: r110273
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2e0f137..9ee3eed 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-01-26 Steve Ellcey <sje@cup.hp.com> + + PR target/25961 + * Makefile.in (insn-automata.o): Add -Wno-error flag. + 2006-01-26 Paolo Bonzini <bonzini@gnu.org> * configure.ac: Expect target tools paths to be passed from the toplevel diff --git a/gcc/Makefile.in b/gcc/Makefile.in index cda9d74..6fba5b4 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -198,6 +198,7 @@ GCC_WARN_CFLAGS = $(LOOSE_WARN) $($(@D)-warn) $(NOCOMMON_FLAG) $($@-warn) # These files are to have -Werror bypassed in stage2: # These are very hard to completely clean due to target complexities. gcc.o-warn = -Wno-error +insn-automata.o-warn = -Wno-error build/gencondmd.o-warn = -Wno-error # Bison-1.75 output often yields (harmless) -Wtraditional warnings build/gengtype-yacc.o-warn = -Wno-error |