mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-14 13:07:31 +00:00
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
This commit is contained in:
parent
92362680c1
commit
699609cf91
@ -2316,8 +2316,7 @@ Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
|
|||||||
&& "Insertelement types must match!");
|
&& "Insertelement types must match!");
|
||||||
assert(Idx->getType() == Type::Int32Ty &&
|
assert(Idx->getType() == Type::Int32Ty &&
|
||||||
"Insertelement index must be i32 type!");
|
"Insertelement index must be i32 type!");
|
||||||
return getInsertElementTy(cast<VectorType>(Val->getType())->getElementType(),
|
return getInsertElementTy(Val->getType(), Val, Elt, Idx);
|
||||||
Val, Elt, Idx);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Constant *ConstantExpr::getShuffleVectorTy(const Type *ReqTy, Constant *V1,
|
Constant *ConstantExpr::getShuffleVectorTy(const Type *ReqTy, Constant *V1,
|
||||||
|
Loading…
Reference in New Issue
Block a user