diff options
Diffstat (limited to 'lib/VMCore/Linker.cpp')
-rw-r--r-- | lib/VMCore/Linker.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/VMCore/Linker.cpp b/lib/VMCore/Linker.cpp index af430bd..457a8b9 100644 --- a/lib/VMCore/Linker.cpp +++ b/lib/VMCore/Linker.cpp @@ -324,12 +324,6 @@ static Value *RemapOperand(const Value *In, assert(CE->getOpcode() == Instruction::Cast); Value *V = RemapOperand(CE->getOperand(0), LocalMap, GlobalMap); Result = ConstantExpr::getCast(cast<Constant>(V), CE->getType()); - } else if (CE->getOpcode() == Instruction::Shl || - CE->getOpcode() == Instruction::Shr) { // Shift - Value *V1 = RemapOperand(CE->getOperand(0), LocalMap, GlobalMap); - Value *V2 = RemapOperand(CE->getOperand(1), LocalMap, GlobalMap); - Result = ConstantExpr::getShift(CE->getOpcode(), cast<Constant>(V1), - cast<Constant>(V2)); } else if (CE->getNumOperands() == 2) { // Binary operator... Value *V1 = RemapOperand(CE->getOperand(0), LocalMap, GlobalMap); |