summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-09-03 03:16:09 +0000
committerChad Rosier <mcrosier@apple.com>2012-09-03 03:16:09 +0000
commita353dba17de9d01704291bc7228c1d9f07012141 (patch)
treed60cab680049d7601a9cd67ed6205e1a55a6ffc2 /llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
parentba3ba8fa1ff843ce5cd27239e225ae0f194e7a99 (diff)
downloadbcm5719-llvm-a353dba17de9d01704291bc7228c1d9f07012141.tar.gz
bcm5719-llvm-a353dba17de9d01704291bc7228c1d9f07012141.zip
Removed unused argument.
llvm-svn: 163104
Diffstat (limited to 'llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp')
-rw-r--r--llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
index ebb0f8d8de5..fe11bec93fc 100644
--- a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
+++ b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
@@ -7457,11 +7457,10 @@ MatchAndEmitInstruction(SMLoc IDLoc,
MCStreamer &Out) {
MCInst Inst;
unsigned Kind;
- unsigned Opcode;
unsigned ErrorInfo;
unsigned MatchResult;
- MatchResult = MatchInstructionImpl(Operands, Kind, Opcode, Inst, ErrorInfo);
+ MatchResult = MatchInstructionImpl(Operands, Kind, Inst, ErrorInfo);
switch (MatchResult) {
default: break;
case Match_Success:
OpenPOWER on IntegriCloud