mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 21:24:00 +00:00
Added missing &. Fixes <rdar://problem/10393723>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143753 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1319,7 +1319,7 @@ bool IfConverter::IfConvertDiamond(BBInfo &BBI, IfcvtKind Kind,
|
|||||||
// fold the tail block in as well. Otherwise, unless it falls through to the
|
// fold the tail block in as well. Otherwise, unless it falls through to the
|
||||||
// tail, add a unconditional branch to it.
|
// tail, add a unconditional branch to it.
|
||||||
if (TailBB) {
|
if (TailBB) {
|
||||||
BBInfo TailBBI = BBAnalysis[TailBB->getNumber()];
|
BBInfo &TailBBI = BBAnalysis[TailBB->getNumber()];
|
||||||
bool CanMergeTail = !TailBBI.HasFallThrough;
|
bool CanMergeTail = !TailBBI.HasFallThrough;
|
||||||
// There may still be a fall-through edge from BBI1 or BBI2 to TailBB;
|
// There may still be a fall-through edge from BBI1 or BBI2 to TailBB;
|
||||||
// check if there are any other predecessors besides those.
|
// check if there are any other predecessors besides those.
|
||||||
|
Reference in New Issue
Block a user