You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
struct B {
double L;
};
struct A{
B C;
};
// Derived Struct truncate to scalar
export double call9(A A) {
B B = A.C;
return B.L;
}
emitMemcpyExpansion(llvm::IRBuilder<>&, llvm::Value*, llvm::Value*, llvm::ConstantInt*): Assertion `DstArrTy && "Expected Dst of memcpy to be a Pointer to an Array Type"' failed.