mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-28 07:17:32 +00:00
Be picky
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15400 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -75,8 +75,12 @@ void AsmWriterEmitter::run(std::ostream &O) {
|
|||||||
|
|
||||||
// If this is a two-address instruction and we are not accessing the
|
// If this is a two-address instruction and we are not accessing the
|
||||||
// 0th operand, remove an operand.
|
// 0th operand, remove an operand.
|
||||||
if (I->second.isTwoAddress && OpNo != 0)
|
if (I->second.isTwoAddress && OpNo != 0) {
|
||||||
|
if (OpNo == 1)
|
||||||
|
throw "Should refer to operand #0 instead of #1 for two-address"
|
||||||
|
" instruction '" + I->first + "'!";
|
||||||
--OpNo;
|
--OpNo;
|
||||||
|
}
|
||||||
|
|
||||||
O << "; printOperand(MI->getOperand(" << OpNo << "), MVT::"
|
O << "; printOperand(MI->getOperand(" << OpNo << "), MVT::"
|
||||||
<< getName(I->second.OperandList[OpNo].Ty) << "); O ";
|
<< getName(I->second.OperandList[OpNo].Ty) << "); O ";
|
||||||
|
Reference in New Issue
Block a user