diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-07-27 23:01:28 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-07-27 23:01:28 +0000 |
commit | 083abdf67f157e9d2ab5a8c9d5e71240479d3c99 (patch) | |
tree | dd52ace29b99fccabcd6afaf4cac3a36c4b265f4 /lib/Lex/MacroInfo.cpp | |
parent | a6d6af308bfc9b72467b432a045a9fc6673e3821 (diff) |
Record macros in dependent PCHs. Also add various info tables to dependent PCHs; tests for this to follow.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@109554 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/MacroInfo.cpp')
-rw-r--r-- | lib/Lex/MacroInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Lex/MacroInfo.cpp b/lib/Lex/MacroInfo.cpp index fda884c4da..7a09986e3d 100644 --- a/lib/Lex/MacroInfo.cpp +++ b/lib/Lex/MacroInfo.cpp @@ -20,6 +20,7 @@ MacroInfo::MacroInfo(SourceLocation DefLoc) : Location(DefLoc) { IsC99Varargs = false; IsGNUVarargs = false; IsBuiltinMacro = false; + IsFromPCH = false; IsDisabled = false; IsUsed = true; |