summaryrefslogtreecommitdiffstats
path: root/tests/codegen/c-variadic-copy.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen/c-variadic-copy.rs')
-rw-r--r--tests/codegen/c-variadic-copy.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/codegen/c-variadic-copy.rs b/tests/codegen/c-variadic-copy.rs
new file mode 100644
index 000000000..4c61c4fcf
--- /dev/null
+++ b/tests/codegen/c-variadic-copy.rs
@@ -0,0 +1,16 @@
+// Tests that `VaListImpl::clone` gets inlined into a call to `llvm.va_copy`
+
+#![crate_type = "lib"]
+#![feature(c_variadic)]
+#![no_std]
+use core::ffi::VaList;
+
+extern "C" {
+ fn foreign_c_variadic_1(_: VaList, ...);
+}
+
+pub unsafe extern "C" fn clone_variadic(ap: VaList) {
+ let mut ap2 = ap.clone();
+ // CHECK: call void @llvm.va_copy
+ foreign_c_variadic_1(ap2.as_va_list(), 42i32);
+}