[cfe-commits] r172672 - /cfe/trunk/lib/Lex/Preprocessor.cpp

David Blaikie dblaikie at gmail.com
Wed Jan 16 15:18:16 PST 2013


Author: dblaikie
Date: Wed Jan 16 17:18:16 2013
New Revision: 172672

URL: http://llvm.org/viewvc/llvm-project?rev=172672&view=rev
Log:
Remove unnecessary initialization i Added in r172668.

echristo already fixed this in r172649, but I'll leave the reformatting in
since I'm in the blame history for it now anyway.

Modified:
    cfe/trunk/lib/Lex/Preprocessor.cpp

Modified: cfe/trunk/lib/Lex/Preprocessor.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Lex/Preprocessor.cpp?rev=172672&r1=172671&r2=172672&view=diff
==============================================================================
--- cfe/trunk/lib/Lex/Preprocessor.cpp (original)
+++ cfe/trunk/lib/Lex/Preprocessor.cpp Wed Jan 16 17:18:16 2013
@@ -62,12 +62,11 @@
     : 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) {
+      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);





More information about the cfe-commits mailing list