diff options
Diffstat (limited to 'lib/Expr')
-rw-r--r-- | lib/Expr/Parser.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
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(); |