mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
SDISel should not optimize a unconditional branch following a conditional branch
when the unconditional branch destination is the fallthrough block. The canonicalization makes it easier to allow optimizations on DAGs to invert conditional branches. The branch folding pass (and AnalyzeBranch) will clean up the unnecessary unconditional branches later. This is one of the patches leading up to disabling codegen prepare critical edge splitting. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114630 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f70e7cc7a2
commit
266a99d161
@ -1503,10 +1503,11 @@ void SelectionDAGBuilder::visitSwitchCase(CaseBlock &CB,
|
||||
MVT::Other, getControlRoot(), Cond,
|
||||
DAG.getBasicBlock(CB.TrueBB));
|
||||
|
||||
// Insert the false branch.
|
||||
if (CB.FalseBB != NextBlock)
|
||||
BrCond = DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
|
||||
DAG.getBasicBlock(CB.FalseBB));
|
||||
// Insert the false branch. Do this even if it's a fall through branch,
|
||||
// this makes it easier to do DAG optimizations which require inverting
|
||||
// the branch condition.
|
||||
BrCond = DAG.getNode(ISD::BR, dl, MVT::Other, BrCond,
|
||||
DAG.getBasicBlock(CB.FalseBB));
|
||||
|
||||
DAG.setRoot(BrCond);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user