diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-01-16 23:13:36 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-01-16 23:13:36 +0000 |
commit | 687cd95941e38d5ab32706f8a79fb91ec09e206f (patch) | |
tree | e7ecaf3de95046c59a80544176fa5107d3462e40 /clang/lib/Lex/Preprocessor.cpp | |
parent | f1d2f0ea21a5a66864da5cd8d39404df5b3fd652 (diff) | |
download | bcm5719-llvm-687cd95941e38d5ab32706f8a79fb91ec09e206f.tar.gz bcm5719-llvm-687cd95941e38d5ab32706f8a79fb91ec09e206f.zip |
Fix -Wreorder warning.
Rewrapping courtesy of clang-format.
llvm-svn: 172668
Diffstat (limited to 'clang/lib/Lex/Preprocessor.cpp')
-rw-r--r-- | clang/lib/Lex/Preprocessor.cpp | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/clang/lib/Lex/Preprocessor.cpp b/clang/lib/Lex/Preprocessor.cpp index 8f6761fb5f3..9e43d6ac566 100644 --- a/clang/lib/Lex/Preprocessor.cpp +++ b/clang/lib/Lex/Preprocessor.cpp @@ -57,19 +57,17 @@ Preprocessor::Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts, DiagnosticsEngine &diags, LangOptions &opts, const TargetInfo *target, SourceManager &SM, HeaderSearch &Headers, ModuleLoader &TheModuleLoader, - IdentifierInfoLookup* IILookup, - bool OwnsHeaders, - bool DelayInitialization, - bool IncrProcessing) - : PPOpts(PPOpts), Diags(&diags), LangOpts(opts), Target(target), - FileMgr(Headers.getFileMgr()), - SourceMgr(SM), HeaderInfo(Headers), TheModuleLoader(TheModuleLoader), - ExternalSource(0), Identifiers(opts, IILookup), - IncrementalProcessing(IncrProcessing), CodeComplete(0), - CodeCompletionFile(0), CodeCompletionOffset(0), CodeCompletionReached(0), - SkipMainFilePreamble(0, true), CurPPLexer(0), - CurDirLookup(0), CurLexerKind(CLK_Lexer), Callbacks(0), Listener(0), - MacroArgCache(0), Record(0), MIChainHead(0), MICache(0) { + IdentifierInfoLookup *IILookup, bool OwnsHeaders, + bool DelayInitialization, bool IncrProcessing) + : PPOpts(PPOpts), Diags(&diags), LangOpts(opts), Target(target), + FileMgr(Headers.getFileMgr()), SourceMgr(SM), HeaderInfo(Headers), + TheModuleLoader(TheModuleLoader), ExternalSource(0), + ParsingIfOrElifDirective(false), Identifiers(opts, IILookup), + IncrementalProcessing(IncrProcessing), CodeComplete(0), + CodeCompletionFile(0), CodeCompletionOffset(0), CodeCompletionReached(0), + SkipMainFilePreamble(0, true), CurPPLexer(0), CurDirLookup(0), + CurLexerKind(CLK_Lexer), Callbacks(0), Listener(0), MacroArgCache(0), + Record(0), MIChainHead(0), MICache(0) { OwnsHeaderSearch = OwnsHeaders; ScratchBuf = new ScratchBuffer(SourceMgr); |