summaryrefslogtreecommitdiff
path: root/lib/Target
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-09-03 01:55:11 +0000
committerChad Rosier <mcrosier@apple.com>2012-09-03 01:55:11 +0000
commit61290e3845a9cae85f26468e4367a598c0f3f6c1 (patch)
tree3ac1c4353598518332b87f0ad4585dab5b7c9231 /lib/Target
parentad5a0ce40b8c4897ba3e12c3ec645bd38b95adff (diff)
downloadllvm-61290e3845a9cae85f26468e4367a598c0f3f6c1.tar.gz
llvm-61290e3845a9cae85f26468e4367a598c0f3f6c1.tar.bz2
llvm-61290e3845a9cae85f26468e4367a598c0f3f6c1.tar.xz
Move ErrorLoc decl into the scope where it's actually used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163100 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r--lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp b/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp
index 94e71d159c..70d0282519 100644
--- a/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp
+++ b/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp
@@ -317,7 +317,6 @@ MatchAndEmitInstruction(SMLoc IDLoc,
SmallVectorImpl<MCParsedAsmOperand*> &Operands,
MCStreamer &Out) {
MCInst Inst;
- SMLoc ErrorLoc;
unsigned ErrorInfo;
switch (MatchInstructionImpl(Operands, Inst, ErrorInfo)) {
@@ -330,7 +329,7 @@ MatchAndEmitInstruction(SMLoc IDLoc,
case Match_MnemonicFail:
return Error(IDLoc, "unrecognized instruction mnemonic");
case Match_InvalidOperand:
- ErrorLoc = IDLoc;
+ SMLoc ErrorLoc = IDLoc;
if (ErrorInfo != ~0U) {
if (ErrorInfo >= Operands.size())
return Error(IDLoc, "too few operands for instruction");