mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-29 13:32:33 +00:00
Fix FastISel to recognize unhandled operands, such as constants
that aren't available as virtual registers (for now). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55026 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
80b7bc865a
commit
a7f2dff98e
@ -25,6 +25,10 @@ bool FastISel::SelectBinaryOp(Instruction *I, ISD::NodeType ISDOpcode,
|
||||
DenseMap<const Value*, unsigned> &ValueMap) {
|
||||
unsigned Op0 = ValueMap[I->getOperand(0)];
|
||||
unsigned Op1 = ValueMap[I->getOperand(1)];
|
||||
if (Op0 == 0 || Op1 == 0)
|
||||
// Unhandled operand. Halt "fast" selection and bail.
|
||||
return false;
|
||||
|
||||
MVT VT = MVT::getMVT(I->getType(), /*HandleUnknown=*/true);
|
||||
if (VT == MVT::Other || !VT.isSimple())
|
||||
// Unhandled type. Halt "fast" selection and bail.
|
||||
|
Loading…
x
Reference in New Issue
Block a user