diff options
author | mpolacek <mpolacek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-09-27 10:40:37 +0000 |
---|---|---|
committer | mpolacek <mpolacek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-09-27 10:40:37 +0000 |
commit | bbd8a9dc83b0ea21c911f6084a2e50be73729d74 (patch) | |
tree | 2c0e240d84b9b28a3e9bb0dee6b185f9a9fc202b /gcc/Makefile.in | |
parent | 1e8492293d3d8967e106070d2e7cc6a7b8bd8d82 (diff) | |
download | gcc-bbd8a9dc83b0ea21c911f6084a2e50be73729d74.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@240526 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index e8559cba023..ff12908912e 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 |