================ @@ -2989,6 +2989,11 @@ static Address EmitX86_64VAArgFromMemory(CodeGenFunction &CGF, // an 8 byte boundary. uint64_t SizeInBytes = (CGF.getContext().getTypeSize(Ty) + 7) / 8; + + if (isEmptyRecord(CGF.getContext(), Ty, true)) { + SizeInBytes = 0; + } + ---------------- phoebewang wrote:
Suggestion: ``` uint64_t SizeInBytes = 0; if (!isEmptyRecord(CGF.getContext(), Ty, true)) SizeInBytes = (CGF.getContext().getTypeSize(Ty) + 7) / 8; ``` https://github.com/llvm/llvm-project/pull/77907 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits