diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-01-31 20:47:44 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-01-31 20:47:44 +0000 |
commit | 67294e253edd8cc39a6c66100b777a034d46761d (patch) | |
tree | 67d06788b72eafd9378b0fda7e845677f111b5c6 /clang/lib/Lex/Preprocessor.cpp | |
parent | 3878a7818c705b426db91a049592d97d0c5f07ef (diff) | |
download | bcm5719-llvm-67294e253edd8cc39a6c66100b777a034d46761d.tar.gz bcm5719-llvm-67294e253edd8cc39a6c66100b777a034d46761d.zip |
Track the currently-being-built submodule inside the preprocessor (rather than
just storing a flag indicating if there was one), and include it in the 'end of
module' annotation. No functionality change.
llvm-svn: 200573
Diffstat (limited to 'clang/lib/Lex/Preprocessor.cpp')
-rw-r--r-- | clang/lib/Lex/Preprocessor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/Preprocessor.cpp b/clang/lib/Lex/Preprocessor.cpp index aa3926304ee..68201b39f69 100644 --- a/clang/lib/Lex/Preprocessor.cpp +++ b/clang/lib/Lex/Preprocessor.cpp @@ -67,7 +67,7 @@ Preprocessor::Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts, CodeComplete(0), CodeCompletionFile(0), CodeCompletionOffset(0), LastTokenWasAt(false), ModuleImportExpectsIdentifier(false), CodeCompletionReached(0), SkipMainFilePreamble(0, true), CurPPLexer(0), - CurDirLookup(0), CurLexerKind(CLK_Lexer), CurIsSubmodule(false), + CurDirLookup(0), CurLexerKind(CLK_Lexer), CurSubmodule(0), Callbacks(0), MacroArgCache(0), Record(0), MIChainHead(0), MICache(0), DeserialMIChainHead(0) { OwnsHeaderSearch = OwnsHeaders; |