From 0b7e41ad616a9ae717a9b93aa26afabdbc4bf01a Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Mon, 17 Oct 2011 23:40:17 +0000 Subject: Fix some -Wunused-variable warnings. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@142310 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Expr/Parser.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'lib') diff --git a/lib/Expr/Parser.cpp b/lib/Expr/Parser.cpp index a94d5614..3871286e 100644 --- a/lib/Expr/Parser.cpp +++ b/lib/Expr/Parser.cpp @@ -1304,7 +1304,6 @@ VersionResult ParserImpl::ParseVersionSpecifier() { } } - Token Start = Tok; VersionResult Res = ParseVersion(); // Define update list to avoid use-of-undef errors. if (!Res.isValid()) { @@ -1519,7 +1518,6 @@ TypeResult ParserImpl::ParseTypeSpecifier() { assert(Tok.kind == Token::KWWidth && "Unexpected token."); // FIXME: Need APInt technically. - Token TypeTok = Tok; int width = atoi(std::string(Tok.start+1,Tok.length-1).c_str()); ConsumeToken(); -- cgit 1.4.1