summaryrefslogtreecommitdiff
path: root/lib/VMCore
diff options
context:
space:
mode:
authorGordon Henriksen <gordonhenriksen@mac.com>2008-08-30 15:41:51 +0000
committerGordon Henriksen <gordonhenriksen@mac.com>2008-08-30 15:41:51 +0000
commit699609cf918cbc1ad4d0029a1d4568369854789f (patch)
treed9362962e441fa1cfe2879a0b408c99695a7ee47 /lib/VMCore
parent92362680c1d4c23670d1a7888ae272450eca2476 (diff)
downloadllvm-699609cf918cbc1ad4d0029a1d4568369854789f.tar.gz
llvm-699609cf918cbc1ad4d0029a1d4568369854789f.tar.bz2
llvm-699609cf918cbc1ad4d0029a1d4568369854789f.tar.xz
Fix ConstantExpr::getInsertElement.
Breakage was exposed in the Ocaml bindings tests after Chris uncommented an assertion in r55084. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55566 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/Constants.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp
index c253e81588..4471cfde34 100644
--- a/lib/VMCore/Constants.cpp
+++ b/lib/VMCore/Constants.cpp
@@ -2316,8 +2316,7 @@ Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
&& "Insertelement types must match!");
assert(Idx->getType() == Type::Int32Ty &&
"Insertelement index must be i32 type!");
- return getInsertElementTy(cast<VectorType>(Val->getType())->getElementType(),
- Val, Elt, Idx);
+ return getInsertElementTy(Val->getType(), Val, Elt, Idx);
}
Constant *ConstantExpr::getShuffleVectorTy(const Type *ReqTy, Constant *V1,