diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-07-02 22:30:01 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-07-02 22:30:01 +0000 |
| commit | 1840e491dc51ace66aec664f0ea20e825adb1298 (patch) | |
| tree | 057f046d31f260e0d797b73c28e516f19f56dffc /clang/Lex/Lexer.cpp | |
| parent | 8bbfe4647510277c54f4783339a7fb177a1d9b59 (diff) | |
| download | bcm5719-llvm-1840e491dc51ace66aec664f0ea20e825adb1298.tar.gz bcm5719-llvm-1840e491dc51ace66aec664f0ea20e825adb1298.zip | |
Remove Lexer::BufferStart, an unneeded instance var.
llvm-svn: 38615
Diffstat (limited to 'clang/Lex/Lexer.cpp')
| -rw-r--r-- | clang/Lex/Lexer.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/Lex/Lexer.cpp b/clang/Lex/Lexer.cpp index 4a6f2d416b9..4164454d0b6 100644 --- a/clang/Lex/Lexer.cpp +++ b/clang/Lex/Lexer.cpp @@ -40,7 +40,6 @@ static void InitCharacterInfo(); Lexer::Lexer(const SourceBuffer *File, unsigned fileid, Preprocessor &pp, const char *BufStart, const char *BufEnd) : BufferPtr(BufStart ? BufStart : File->getBufferStart()), - BufferStart(BufferPtr), BufferEnd(BufEnd ? BufEnd : File->getBufferEnd()), InputFile(File), CurFileID(fileid), PP(pp), Features(PP.getLangOptions()) { Is_PragmaLexer = false; |

