mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
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
This commit is contained in:
parent
ad5a0ce40b
commit
61290e3845
@ -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");
|
||||
|
Loading…
x
Reference in New Issue
Block a user