mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
Fix some bad fall-throughs in a switch statement. Both the 'Q' and 'R' cases
should fall through to the 'H' case, but instead 'Q' was falling through to 'R' so that it would do the wrong thing for a big-endian ARM target. llvm-svn: 104883
This commit is contained in:
parent
35206e98e6
commit
3424b5dab3
@ -1064,21 +1064,27 @@ bool ARMAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
|
||||
printOperand(MI, OpNum, O);
|
||||
return false;
|
||||
case 'Q':
|
||||
if (TM.getTargetData()->isLittleEndian())
|
||||
break;
|
||||
// Fallthrough
|
||||
case 'R':
|
||||
// Print the least significant half of a register pair.
|
||||
if (TM.getTargetData()->isBigEndian())
|
||||
break;
|
||||
// Fallthrough
|
||||
case 'H': // Write second word of DI / DF reference.
|
||||
printOperand(MI, OpNum, O);
|
||||
return false;
|
||||
case 'R':
|
||||
// Print the most significant half of a register pair.
|
||||
if (TM.getTargetData()->isLittleEndian())
|
||||
break;
|
||||
printOperand(MI, OpNum, O);
|
||||
return false;
|
||||
case 'H':
|
||||
break;
|
||||
}
|
||||
// Print the second half of a register pair (for 'Q', 'R' or 'H').
|
||||
// Verify that this operand has two consecutive registers.
|
||||
if (!MI->getOperand(OpNum).isReg() ||
|
||||
OpNum+1 == MI->getNumOperands() ||
|
||||
!MI->getOperand(OpNum+1).isReg())
|
||||
return true;
|
||||
++OpNum; // Return the high-part.
|
||||
}
|
||||
++OpNum;
|
||||
}
|
||||
|
||||
printOperand(MI, OpNum, O);
|
||||
|
Loading…
Reference in New Issue
Block a user