[llvm] [MergeFunc] Fix crash caused by bitcasting ArrayType (PR #133259)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 02:34:41 PDT 2025
================
@@ -76,6 +76,41 @@ void IRBuilderBase::SetInstDebugLocation(Instruction *I) const {
}
}
+Value *IRBuilderBase::CreateAggregateCast(Value *V, Type *DestTy) {
+ Type *SrcTy = V->getType();
+ if (SrcTy == DestTy)
+ return V;
+ if (auto *SrcST = dyn_cast<StructType>(SrcTy)) {
+ assert(DestTy->isStructTy() && "Expected StructType");
+ auto *DestST = cast<StructType>(DestTy);
+ assert(SrcST->getNumElements() == DestST->getNumElements());
----------------
fhahn wrote:
add message to assert
https://github.com/llvm/llvm-project/pull/133259
More information about the llvm-commits
mailing list