diff options
author | Marek Polacek <polacek@redhat.com> | 2016-09-27 10:40:37 +0000 |
---|---|---|
committer | Marek Polacek <mpolacek@gcc.gnu.org> | 2016-09-27 10:40:37 +0000 |
commit | 9cdb2ca41de168423b973d1c0324978f31428d1a (patch) | |
tree | 2c0e240d84b9b28a3e9bb0dee6b185f9a9fc202b | |
parent | 56b653f1a37372ceaba9ec6cbfc44ce09153c259 (diff) | |
download | gcc-9cdb2ca41de168423b973d1c0324978f31428d1a.zip gcc-9cdb2ca41de168423b973d1c0324978f31428d1a.tar.gz gcc-9cdb2ca41de168423b973d1c0324978f31428d1a.tar.bz2 |
re PR bootstrap/77751 (cc1plus: error: unrecognized command line option "-Wno-implicit-fallthrough" for insn-emit.o)
PR bootstrap/77751
* Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn,
insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Use
-Wno-error instead of -Wno-implicit-fallthrough.
From-SVN: r240526
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/Makefile.in | 10 |
2 files changed, 12 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 66f0dae..d0691b2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2016-09-27 Marek Polacek <polacek@redhat.com> + + PR bootstrap/77751 + * Makefile.in (insn-attrtab.o-warn, insn-dfatab.o-warn, + insn-latencytab.o-warn, insn-output.o-warn, insn-emit.o-warn): Use + -Wno-error instead of -Wno-implicit-fallthrough. + 2016-09-27 Martin Liska <mliska@suse.cz> PR bootstrap/77749 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index e8559cb..ff12908 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -218,11 +218,11 @@ libgcov-merge-tool.o-warn = -Wno-error gimple-match.o-warn = -Wno-unused generic-match.o-warn = -Wno-unused dfp.o-warn = -Wno-strict-aliasing -insn-attrtab.o-warn = -Wno-implicit-fallthrough -insn-dfatab.o-warn = -Wno-implicit-fallthrough -insn-latencytab.o-warn = -Wno-implicit-fallthrough -insn-output.o-warn = -Wno-implicit-fallthrough -insn-emit.o-warn = -Wno-implicit-fallthrough +insn-attrtab.o-warn = -Wno-error +insn-dfatab.o-warn = -Wno-error +insn-latencytab.o-warn = -Wno-error +insn-output.o-warn = -Wno-error +insn-emit.o-warn = -Wno-error # All warnings have to be shut off in stage1 if the compiler used then # isn't gcc; configure determines that. WARN_CFLAGS will be either |