mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Minor statistics counting bug.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37451 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4cd950f61b
commit
cb78d67a1a
@ -158,15 +158,17 @@ bool IfConverter::runOnMachineFunction(MachineFunction &MF) {
|
||||
// Block has been already been if-converted, abort!
|
||||
break;
|
||||
case ICSimple:
|
||||
case ICSimpleFalse:
|
||||
case ICSimpleFalse: {
|
||||
bool isRev = BBI.Kind == ICSimpleFalse;
|
||||
DOUT << "Ifcvt (Simple" << (BBI.Kind == ICSimpleFalse ? " false" : "")
|
||||
<< "): BB#" << BBI.BB->getNumber() << " ";
|
||||
RetVal = IfConvertSimple(BBI);
|
||||
DOUT << (RetVal ? "succeeded!" : "failed!") << "\n";
|
||||
if (RetVal)
|
||||
if (BBI.Kind == ICSimple) NumSimple++;
|
||||
else NumSimpleRev++;
|
||||
if (isRev) NumSimple++;
|
||||
else NumSimpleRev++;
|
||||
break;
|
||||
}
|
||||
case ICTriangle:
|
||||
DOUT << "Ifcvt (Triangle): BB#" << BBI.BB->getNumber() << " ";
|
||||
RetVal = IfConvertTriangle(BBI);
|
||||
|
Loading…
x
Reference in New Issue
Block a user