mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
strength reduce a ridiculous use of APInt.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100274 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ca703bd56b
commit
9698c1985f
@ -632,8 +632,7 @@ static bool CanUseSIToFP(ConstantFP *InitV, ConstantFP *ExitV,
|
||||
return true;
|
||||
|
||||
// If the iteration range can be handled by SIToFPInst then use it.
|
||||
APInt Max = APInt::getSignedMaxValue(32);
|
||||
if (Max.getZExtValue() > static_cast<uint64_t>(abs64(intEV - intIV)))
|
||||
if (abs64(intEV - intIV) < INT32_MAX)
|
||||
return true;
|
||||
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user