mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Fix x86 fast-isel's cmp+branch folding to avoid folding when the
comparison is in a different basic block from the branch. In such cases, the comparison's operands may not have initialized virtual registers available. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111709 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -960,9 +960,11 @@ bool X86FastISel::X86SelectBranch(const Instruction *I) {
|
||||
MachineBasicBlock *TrueMBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
|
||||
MachineBasicBlock *FalseMBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
|
||||
|
||||
// Fold the common case of a conditional branch with a comparison.
|
||||
// Fold the common case of a conditional branch with a comparison
|
||||
// in the same block (values defined on other blocks may not have
|
||||
// initialized registers).
|
||||
if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
|
||||
if (CI->hasOneUse()) {
|
||||
if (CI->hasOneUse() && CI->getParent() == I->getParent()) {
|
||||
EVT VT = TLI.getValueType(CI->getOperand(0)->getType());
|
||||
|
||||
// Try to take advantage of fallthrough opportunities.
|
||||
|
Reference in New Issue
Block a user