diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-02-20 11:10:28 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-02-20 11:10:28 +0000 |
commit | 035eaacd1fd5406ea248a0275f7ad8207da6db21 (patch) | |
tree | 768322fb631dba58e1583f0e43694b767cbf2c0d /llvm/lib/CodeGen/IfConversion.cpp | |
parent | 579f07135afdc3975eb24a210433222b888dc9f7 (diff) | |
download | bcm5719-llvm-035eaacd1fd5406ea248a0275f7ad8207da6db21.tar.gz bcm5719-llvm-035eaacd1fd5406ea248a0275f7ad8207da6db21.zip |
Update gcc 4.3 warnings fix patch with recent head changes
llvm-svn: 47368
Diffstat (limited to 'llvm/lib/CodeGen/IfConversion.cpp')
-rw-r--r-- | llvm/lib/CodeGen/IfConversion.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/IfConversion.cpp b/llvm/lib/CodeGen/IfConversion.cpp index fb53377b98b..7d7f33e5353 100644 --- a/llvm/lib/CodeGen/IfConversion.cpp +++ b/llvm/lib/CodeGen/IfConversion.cpp @@ -278,9 +278,10 @@ bool IfConverter::runOnMachineFunction(MachineFunction &MF) { : BBI.TrueBB->getNumber()) << ") "; RetVal = IfConvertSimple(BBI, Kind); DOUT << (RetVal ? "succeeded!" : "failed!") << "\n"; - if (RetVal) + if (RetVal) { if (isFalse) NumSimpleFalse++; else NumSimple++; + } break; } case ICTriangle: |