diff options
author | Sanjay Patel <spatel@rotateright.com> | 2017-02-23 16:39:51 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2017-02-23 16:39:51 +0000 |
commit | 68e4cb3c86021541b768836a2ed0976f3dd99dde (patch) | |
tree | 90b114e46ddba06c37183d615cc6dac45174f820 /llvm/lib/Transforms | |
parent | adf2ab16e426628cc0ac80d570657f38714ea870 (diff) | |
download | bcm5719-llvm-68e4cb3c86021541b768836a2ed0976f3dd99dde.tar.gz bcm5719-llvm-68e4cb3c86021541b768836a2ed0976f3dd99dde.zip |
[InstCombine] use loop instead of recursion to peek through FPExt; NFCI
llvm-svn: 295992
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp index 9a29cad1283..80b2870f893 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp @@ -1223,17 +1223,15 @@ static Constant *fitsInFPType(ConstantFP *CFP, const fltSemantics &Sem) { return nullptr; } -/// If this is a floating-point extension instruction, look -/// through it until we get the source value. +/// Look through floating-point extensions until we get the source value. static Value *lookThroughFPExtensions(Value *V) { - if (Instruction *I = dyn_cast<Instruction>(V)) - if (I->getOpcode() == Instruction::FPExt) - return lookThroughFPExtensions(I->getOperand(0)); + while (auto *FPExt = dyn_cast<FPExtInst>(V)) + V = FPExt->getOperand(0); // If this value is a constant, return the constant in the smallest FP type // that can accurately represent it. This allows us to turn // (float)((double)X+2.0) into x+2.0f. - if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) { + if (auto *CFP = dyn_cast<ConstantFP>(V)) { if (CFP->getType() == Type::getPPC_FP128Ty(V->getContext())) return V; // No constant folding of this. // See if the value can be truncated to half and then reextended. |