mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-22 10:24:26 +00:00
In the function InstCombiner::visitExtractElementInst() removed the limitation that extract is promoted over a cast only if the cast has only one use.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179786 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -278,10 +278,10 @@ Instruction *InstCombiner::visitExtractElementInst(ExtractElementInst &EI) {
|
||||
} else if (CastInst *CI = dyn_cast<CastInst>(I)) {
|
||||
// Canonicalize extractelement(cast) -> cast(extractelement)
|
||||
// bitcasts can change the number of vector elements and they cost nothing
|
||||
if (CI->hasOneUse() && EI.hasOneUse() &&
|
||||
(CI->getOpcode() != Instruction::BitCast)) {
|
||||
Value *EE = Builder->CreateExtractElement(CI->getOperand(0),
|
||||
EI.getIndexOperand());
|
||||
if (CI->hasOneUse() && (CI->getOpcode() != Instruction::BitCast)) {
|
||||
Value *EE = InsertNewInstWith(
|
||||
ExtractElementInst::Create(CI->getOperand(0), EI.getIndexOperand()),
|
||||
*CI);
|
||||
return CastInst::Create(CI->getOpcode(), EE, EI.getType());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user