From 92e84229e11a059ba06a441aaf566a16e6002d16 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 30 Mar 2004 22:51:03 +0000 Subject: [PATCH] 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 --- lib/VMCore/Constants.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp index e1b0f18dc32..f29f3157c8e 100644 --- a/lib/VMCore/Constants.cpp +++ b/lib/VMCore/Constants.cpp @@ -1058,6 +1058,8 @@ namespace llvm { V.first < Instruction::BinaryOpsEnd) || V.first == Instruction::Shl || V.first == Instruction::Shr) 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!"); -- 2.34.1