diff options
author | Jan Beulich <jbeulich@suse.com> | 2022-08-16 09:11:18 +0200 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2022-08-16 09:11:18 +0200 |
commit | 33b6a20af3854e1aa144fbfca6ff98fccd0ef86d (patch) | |
tree | 67b9fd12c0e001483558ea32d15c3bc3fab23473 /opcodes/Makefile.in | |
parent | 246cb4b5a18559882cba41f364f08ab4f838d853 (diff) | |
download | gdb-33b6a20af3854e1aa144fbfca6ff98fccd0ef86d.zip gdb-33b6a20af3854e1aa144fbfca6ff98fccd0ef86d.tar.gz gdb-33b6a20af3854e1aa144fbfca6ff98fccd0ef86d.tar.bz2 |
revert "x86: Also pass -P to $(CPP) when processing i386-opc.tbl"
This reverts commit 384f368958f2a5bb083660e58e5f8a010e6ad429, which
broke i386-gen's emitting of diagnostics. As a replacement to address
the original issue of newer gcc no longer splicing lines when dropping
the line continuation backslashes, switch to using + as the line
continuation character, doing the line splicing in i386-gen.
Diffstat (limited to 'opcodes/Makefile.in')
-rw-r--r-- | opcodes/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/Makefile.in b/opcodes/Makefile.in index 2257b08..581747e 100644 --- a/opcodes/Makefile.in +++ b/opcodes/Makefile.in @@ -1534,7 +1534,7 @@ $(srcdir)/i386-tbl.h: $(srcdir)/i386-init.h @echo $@ $(srcdir)/i386-init.h: @MAINT@ i386-gen$(EXEEXT_FOR_BUILD) i386-opc.tbl i386-reg.tbl i386-opc.h - $(CPP) -P $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) - \ + $(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) - \ < $(srcdir)/i386-opc.tbl \ | ./i386-gen$(EXEEXT_FOR_BUILD) --srcdir $(srcdir) |