about summary refs log tree commit diff
path: root/tests/codegen/export-no-mangle.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen/export-no-mangle.rs')
-rw-r--r--tests/codegen/export-no-mangle.rs31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/codegen/export-no-mangle.rs b/tests/codegen/export-no-mangle.rs
deleted file mode 100644
index 5040684f52e..00000000000
--- a/tests/codegen/export-no-mangle.rs
+++ /dev/null
@@ -1,31 +0,0 @@
-//@ compile-flags: -C no-prepopulate-passes
-
-#![crate_type = "lib"]
-
-mod private {
-    // CHECK: @FOO =
-    #[no_mangle]
-    pub static FOO: u32 = 3;
-
-    // CHECK: @BAR =
-    #[export_name = "BAR"]
-    static BAR: u32 = 3;
-
-    // CHECK: void @a()
-    #[no_mangle]
-    pub extern "C" fn a() {}
-
-    // CHECK: void @b()
-    #[export_name = "b"]
-    extern "C" fn b() {}
-
-    // CHECK: void @c()
-    #[export_name = "c"]
-    #[inline]
-    extern "C" fn c() {}
-
-    // CHECK: void @d()
-    #[export_name = "d"]
-    #[inline(always)]
-    extern "C" fn d() {}
-}