Don't assert when redefining a built-in macro in a PCH, PR29119
authorNico Weber <nicolasweber@gmx.de>
Fri, 9 Dec 2016 17:32:52 +0000 (17:32 +0000)
committerNico Weber <nicolasweber@gmx.de>
Fri, 9 Dec 2016 17:32:52 +0000 (17:32 +0000)
commitfd8707029eb0bc5157374ed49f51665bf04859b2
tree28587278dd1784c5639e839191bb8f52fb65afac
parent1c4109b4c236de94e38c45189baf383e66de5b81
Don't assert when redefining a built-in macro in a PCH, PR29119

PCH files store the macro history for a given macro, and the whole history list
for one identifier is given to the Preprocessor at once via
Preprocessor::setLoadedMacroDirective(). This contained an assert that no macro
history exists yet for that identifier. That's usually true, but it's not true
for builtin macros, which are created in Preprocessor() before flags and pchs
are processed. Luckily, ASTWriter stops writing macro history lists at builtins
(see shouldIgnoreMacro() in ASTWriter.cpp), so the head of the history list was
missing for builtin macros. So make the assert weaker, and splice the history
list to the existing single define for builtins.

https://reviews.llvm.org/D27545

llvm-svn: 289228
clang/include/clang/Lex/Preprocessor.h
clang/lib/Lex/PPMacroExpansion.cpp
clang/lib/Serialization/ASTReader.cpp
clang/test/PCH/builtin-macro.c [new file with mode: 0644]