forked from OSchip/llvm-project
Fix unused variable
This commit is contained in:
parent
612d0ef173
commit
1fff7c8924
|
@ -1273,7 +1273,7 @@ void ByteCodeExecutor::execute(
|
||||||
case GetOperand3: {
|
case GetOperand3: {
|
||||||
unsigned index = opCode - GetOperand0;
|
unsigned index = opCode - GetOperand0;
|
||||||
LLVM_DEBUG(llvm::dbgs() << "Executing GetOperand" << index << ":\n");
|
LLVM_DEBUG(llvm::dbgs() << "Executing GetOperand" << index << ":\n");
|
||||||
executeGetOperand(opCode - GetOperand0);
|
executeGetOperand(index);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case GetOperandN:
|
case GetOperandN:
|
||||||
|
@ -1286,7 +1286,7 @@ void ByteCodeExecutor::execute(
|
||||||
case GetResult3: {
|
case GetResult3: {
|
||||||
unsigned index = opCode - GetResult0;
|
unsigned index = opCode - GetResult0;
|
||||||
LLVM_DEBUG(llvm::dbgs() << "Executing GetResult" << index << ":\n");
|
LLVM_DEBUG(llvm::dbgs() << "Executing GetResult" << index << ":\n");
|
||||||
executeGetResult(opCode - GetResult0);
|
executeGetResult(index);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case GetResultN:
|
case GetResultN:
|
||||||
|
|
Loading…
Reference in New Issue