mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-24 08:24:33 +00:00
Fix a latent bug in select constantexpr handling that was broke 253.perlbmk
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12562 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1058,6 +1058,8 @@ namespace llvm {
|
|||||||
V.first < Instruction::BinaryOpsEnd) ||
|
V.first < Instruction::BinaryOpsEnd) ||
|
||||||
V.first == Instruction::Shl || V.first == Instruction::Shr)
|
V.first == Instruction::Shl || V.first == Instruction::Shr)
|
||||||
return new ConstantExpr(V.first, V.second[0], V.second[1]);
|
return new ConstantExpr(V.first, V.second[0], V.second[1]);
|
||||||
|
if (V.first == Instruction::Select)
|
||||||
|
return new ConstantExpr(V.second[0], V.second[1], V.second[2]);
|
||||||
|
|
||||||
assert(V.first == Instruction::GetElementPtr && "Invalid ConstantExpr!");
|
assert(V.first == Instruction::GetElementPtr && "Invalid ConstantExpr!");
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user