mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
Make sure we have a legal type (and simple) before continuing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117848 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
943beeb747
commit
76d61478df
@ -939,8 +939,11 @@ bool ARMFastISel::SelectBranch(const Instruction *I) {
|
||||
// TODO: Factor this out.
|
||||
if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
|
||||
if (CI->hasOneUse() && (CI->getParent() == I->getParent())) {
|
||||
EVT VT;
|
||||
const Type *Ty = CI->getOperand(0)->getType();
|
||||
EVT VT = TLI.getValueType(Ty);
|
||||
if (!isTypeLegal(Ty, VT))
|
||||
return false;
|
||||
|
||||
bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
|
||||
if (isFloat && !Subtarget->hasVFP2())
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user