summaryrefslogtreecommitdiffstats
path: root/clang/Lex/Lexer.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-07-02 22:30:01 +0000
committerChris Lattner <sabre@nondot.org>2006-07-02 22:30:01 +0000
commit1840e491dc51ace66aec664f0ea20e825adb1298 (patch)
tree057f046d31f260e0d797b73c28e516f19f56dffc /clang/Lex/Lexer.cpp
parent8bbfe4647510277c54f4783339a7fb177a1d9b59 (diff)
downloadbcm5719-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.cpp1
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;
OpenPOWER on IntegriCloud