Skip to content

Commit 0b71ff6

Browse files
committed
c_variadic: use Clone instead of LLVM va_copy
1 parent b86553f commit 0b71ff6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/intrinsics/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1506,7 +1506,7 @@ fn codegen_regular_intrinsic_call<'tcx>(
15061506
}
15071507

15081508
// FIXME implement variadics in cranelift
1509-
sym::va_copy | sym::va_arg | sym::va_end => {
1509+
sym::va_arg | sym::va_end => {
15101510
fx.tcx.dcx().span_fatal(
15111511
source_info.span,
15121512
"Defining variadic functions is not yet supported by Cranelift",

0 commit comments

Comments
 (0)