1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

[LV] Remove duplicated return stmt (NFC).

This commit is contained in:
Florian Hahn 2020-05-19 15:35:59 +01:00
parent ed678c9f29
commit 8f2546abf8

View File

@ -7124,7 +7124,6 @@ VPRecipeBase *VPRecipeBuilder::tryToCreateWidenRecipe(Instruction *Instr,
if ((Recipe = tryToOptimizeInductionPHI(Phi)))
return Recipe;
return new VPWidenPHIRecipe(Phi);
return new VPWidenPHIRecipe(Phi);
}
if (isa<TruncInst>(Instr) &&