diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-10-01 13:32:03 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-10-01 13:32:03 +0000 |
| commit | 44fee4e0eb62c691d80ed5f36cb96321b4167a6d (patch) | |
| tree | 76606fd558ae8eb98363e8e98caffdaff04cc734 /llvm/lib/AsmParser/LLParser.cpp | |
| parent | ad864049d68d44445f2eae5d186179299a86d217 (diff) | |
| download | bcm5719-llvm-44fee4e0eb62c691d80ed5f36cb96321b4167a6d.tar.gz bcm5719-llvm-44fee4e0eb62c691d80ed5f36cb96321b4167a6d.zip | |
Remove several unused variables.
Patch by Alp Toker.
llvm-svn: 191757
Diffstat (limited to 'llvm/lib/AsmParser/LLParser.cpp')
| -rw-r--r-- | llvm/lib/AsmParser/LLParser.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/AsmParser/LLParser.cpp b/llvm/lib/AsmParser/LLParser.cpp index 2cf2de674e0..bdc79068946 100644 --- a/llvm/lib/AsmParser/LLParser.cpp +++ b/llvm/lib/AsmParser/LLParser.cpp @@ -2393,7 +2393,6 @@ bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) { Lex.Lex(); ValID Fn, Label; - LocTy FnLoc, LabelLoc; if (ParseToken(lltok::lparen, "expected '(' in block address expression") || ParseValID(Fn) || @@ -3185,7 +3184,6 @@ bool LLParser::ParseBasicBlock(PerFunctionState &PFS) { // Parse the instructions in this block until we get a terminator. Instruction *Inst; - SmallVector<std::pair<unsigned, MDNode *>, 4> MetadataOnInst; do { // This instruction may have three possibilities for a name: a) none // specified, b) name specified "%foo =", c) number specified: "%4 =". |

