diff options
author | Alp Toker <alp@nuanti.com> | 2014-05-02 03:43:38 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2014-05-02 03:43:38 +0000 |
commit | 9663780e3573a5cbd5b631bf5ccd691563c98e24 (patch) | |
tree | c970705470988c9d54e75b0999edeaf1f7df8a39 /clang/lib/Lex/Preprocessor.cpp | |
parent | 1ae02f68bea80c5114b808455b922667339f4c90 (diff) | |
download | bcm5719-llvm-9663780e3573a5cbd5b631bf5ccd691563c98e24.tar.gz bcm5719-llvm-9663780e3573a5cbd5b631bf5ccd691563c98e24.zip |
Reformat code following Preprocessor constructor updates
Landing this separately to make the previous commits easy to follow at home.
llvm-svn: 207826
Diffstat (limited to 'clang/lib/Lex/Preprocessor.cpp')
-rw-r--r-- | clang/lib/Lex/Preprocessor.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/clang/lib/Lex/Preprocessor.cpp b/clang/lib/Lex/Preprocessor.cpp index ae28fc01e26..56eabf41ffe 100644 --- a/clang/lib/Lex/Preprocessor.cpp +++ b/clang/lib/Lex/Preprocessor.cpp @@ -56,20 +56,19 @@ ExternalPreprocessorSource::~ExternalPreprocessorSource() { } Preprocessor::Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts, DiagnosticsEngine &diags, LangOptions &opts, - SourceManager &SM, - HeaderSearch &Headers, ModuleLoader &TheModuleLoader, + SourceManager &SM, HeaderSearch &Headers, + ModuleLoader &TheModuleLoader, IdentifierInfoLookup *IILookup, bool OwnsHeaders, TranslationUnitKind TUKind) : PPOpts(PPOpts), Diags(&diags), LangOpts(opts), Target(0), FileMgr(Headers.getFileMgr()), SourceMgr(SM), HeaderInfo(Headers), TheModuleLoader(TheModuleLoader), ExternalSource(0), - Identifiers(opts, IILookup), IncrementalProcessing(false), - TUKind(TUKind), + Identifiers(opts, IILookup), IncrementalProcessing(false), TUKind(TUKind), CodeComplete(0), CodeCompletionFile(0), CodeCompletionOffset(0), LastTokenWasAt(false), ModuleImportExpectsIdentifier(false), CodeCompletionReached(0), SkipMainFilePreamble(0, true), CurPPLexer(0), - CurDirLookup(0), CurLexerKind(CLK_Lexer), CurSubmodule(0), - Callbacks(0), MacroArgCache(0), Record(0), MIChainHead(0), MICache(0), + CurDirLookup(0), CurLexerKind(CLK_Lexer), CurSubmodule(0), Callbacks(0), + MacroArgCache(0), Record(0), MIChainHead(0), MICache(0), DeserialMIChainHead(0) { OwnsHeaderSearch = OwnsHeaders; |