summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2010-06-29 13:24:40 +0000
committerDuncan Sands <baldrick@free.fr>2010-06-29 13:24:40 +0000
commit5667a0846820f84ef682b35a4ab3e925f28e9938 (patch)
tree3969cb23fad2eaa80e916bf014e13404cf42a8dd /llvm/lib
parent193bb1ee6aa4f48b552dce66092d60d310aa7a1f (diff)
downloadbcm5719-llvm-5667a0846820f84ef682b35a4ab3e925f28e9938.tar.gz
bcm5719-llvm-5667a0846820f84ef682b35a4ab3e925f28e9938.zip
Remove unused calls to Lexer.getLoc and the pointless variable HasFillExpr.
llvm-svn: 107136
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/MC/MCParser/AsmParser.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/MC/MCParser/AsmParser.cpp b/llvm/lib/MC/MCParser/AsmParser.cpp
index dea71ddf19c..613a2624652 100644
--- a/llvm/lib/MC/MCParser/AsmParser.cpp
+++ b/llvm/lib/MC/MCParser/AsmParser.cpp
@@ -844,7 +844,6 @@ bool AsmParser::ParseAssignment(const StringRef &Name) {
SMLoc EqualLoc = Lexer.getLoc();
const MCExpr *Value;
- SMLoc StartLoc = Lexer.getLoc();
if (ParseExpression(Value))
return true;
@@ -1116,7 +1115,6 @@ bool AsmParser::ParseDirectiveSpace() {
return true;
int64_t FillExpr = 0;
- bool HasFillExpr = false;
if (Lexer.isNot(AsmToken::EndOfStatement)) {
if (Lexer.isNot(AsmToken::Comma))
return TokError("unexpected token in '.space' directive");
@@ -1125,8 +1123,6 @@ bool AsmParser::ParseDirectiveSpace() {
if (ParseAbsoluteExpression(FillExpr))
return true;
- HasFillExpr = true;
-
if (Lexer.isNot(AsmToken::EndOfStatement))
return TokError("unexpected token in '.space' directive");
}
@@ -1183,7 +1179,6 @@ bool AsmParser::ParseDirectiveFill() {
/// ::= .org expression [ , expression ]
bool AsmParser::ParseDirectiveOrg() {
const MCExpr *Offset;
- SMLoc StartLoc = Lexer.getLoc();
if (ParseExpression(Offset))
return true;
@@ -1387,7 +1382,6 @@ bool AsmParser::ParseDirectiveDarwinSymbolDesc() {
return TokError("unexpected token in '.desc' directive");
Lex();
- SMLoc DescLoc = Lexer.getLoc();
int64_t DescValue;
if (ParseAbsoluteExpression(DescValue))
return true;
@@ -1673,7 +1667,6 @@ bool AsmParser::ParseDirectiveDarwinLsym() {
Lex();
const MCExpr *Value;
- SMLoc StartLoc = Lexer.getLoc();
if (ParseExpression(Value))
return true;
OpenPOWER on IntegriCloud