mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-10 05:41:40 +00:00
Remove duplicate check of LimitFloatPrecision. It was already checked earlier before IsExp10 could be set to true.
llvm-svn: 168553
This commit is contained in:
parent
a2fa1ce094
commit
70e0c8dff6
@ -4184,7 +4184,7 @@ SelectionDAGBuilder::visitPow(const CallInst &I) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) {
|
if (IsExp10) {
|
||||||
SDValue Op = getValue(I.getArgOperand(1));
|
SDValue Op = getValue(I.getArgOperand(1));
|
||||||
|
|
||||||
// Put the exponent in the right bit position for later addition to the
|
// Put the exponent in the right bit position for later addition to the
|
||||||
|
Loading…
Reference in New Issue
Block a user