Skip to content

Commit 59969ea

Browse files
committed
remove LLVM va_end calls
The operation is a no-op, so we skip it.
1 parent 7c540e5 commit 59969ea

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
@@ -1512,7 +1512,7 @@ fn codegen_regular_intrinsic_call<'tcx>(
15121512
}
15131513

15141514
// FIXME implement variadics in cranelift
1515-
sym::va_arg | sym::va_end => {
1515+
sym::va_arg => {
15161516
fx.tcx.dcx().span_fatal(
15171517
source_info.span,
15181518
"Defining variadic functions is not yet supported by Cranelift",

0 commit comments

Comments
 (0)