summaryrefslogtreecommitdiffstats
path: root/clang/lib/Lex/MacroInfo.cpp
diff options
context:
space:
mode:
authorSebastian Redl <sebastian.redl@getdesigned.at>2010-08-18 23:57:06 +0000
committerSebastian Redl <sebastian.redl@getdesigned.at>2010-08-18 23:57:06 +0000
commitd44cd6adba6170f4915a731e2449962057b1cf26 (patch)
tree362eaaf88c367865fb8253aba959cfb45ebf5268 /clang/lib/Lex/MacroInfo.cpp
parent3e31c7249729aca534f0614d40f9b6398005579d (diff)
downloadbcm5719-llvm-d44cd6adba6170f4915a731e2449962057b1cf26.tar.gz
bcm5719-llvm-d44cd6adba6170f4915a731e2449962057b1cf26.zip
More PCH -> AST renaming.
llvm-svn: 111472
Diffstat (limited to 'clang/lib/Lex/MacroInfo.cpp')
-rw-r--r--clang/lib/Lex/MacroInfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Lex/MacroInfo.cpp b/clang/lib/Lex/MacroInfo.cpp
index 6eac0364f67..c6d09349b5e 100644
--- a/clang/lib/Lex/MacroInfo.cpp
+++ b/clang/lib/Lex/MacroInfo.cpp
@@ -20,7 +20,7 @@ MacroInfo::MacroInfo(SourceLocation DefLoc) : Location(DefLoc) {
IsC99Varargs = false;
IsGNUVarargs = false;
IsBuiltinMacro = false;
- IsFromPCH = false;
+ IsFromAST = false;
IsDisabled = false;
IsUsed = true;
IsAllowRedefinitionsWithoutWarning = false;
@@ -37,7 +37,7 @@ MacroInfo::MacroInfo(const MacroInfo &MI, llvm::BumpPtrAllocator &PPAllocator) {
IsC99Varargs = MI.IsC99Varargs;
IsGNUVarargs = MI.IsGNUVarargs;
IsBuiltinMacro = MI.IsBuiltinMacro;
- IsFromPCH = MI.IsFromPCH;
+ IsFromAST = MI.IsFromAST;
IsDisabled = MI.IsDisabled;
IsUsed = MI.IsUsed;
IsAllowRedefinitionsWithoutWarning = MI.IsAllowRedefinitionsWithoutWarning;
OpenPOWER on IntegriCloud