- Raw vaargs with optional return not lowered correctly #2819

This commit is contained in:
Christoffer Lerno
2026-01-24 23:54:20 +01:00
parent b5e25e3857
commit 378b35265b
3 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
// #target: linux-aarch64
module test;
extern fn float? printf(char*,...);
fn int main()
{
float a = 12.3;
(void)printf("", a);
return 0;
}
/* #expect: test.ll
declare i64 @printf(ptr, ptr, ...) #0
define i32 @main() #0 {
entry:
%a = alloca float, align 4
%retparam = alloca float, align 4
store float 0x40289999A0000000, ptr %a, align 4
%0 = load float, ptr %a, align 4
%fpfpext = fpext float %0 to double
%1 = call i64 (ptr, ptr, ...) @printf(ptr %retparam, ptr @.str, double %fpfpext)
ret i32 0
}