summaryrefslogtreecommitdiffstats
path: root/tests/run-make/cross-lang-lto-clang/rustlib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make/cross-lang-lto-clang/rustlib.rs')
-rw-r--r--tests/run-make/cross-lang-lto-clang/rustlib.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/run-make/cross-lang-lto-clang/rustlib.rs b/tests/run-make/cross-lang-lto-clang/rustlib.rs
new file mode 100644
index 000000000..8a74d74a4
--- /dev/null
+++ b/tests/run-make/cross-lang-lto-clang/rustlib.rs
@@ -0,0 +1,12 @@
+#![crate_type="staticlib"]
+
+#[no_mangle]
+pub extern "C" fn rust_always_inlined() -> u32 {
+ 42
+}
+
+#[no_mangle]
+#[inline(never)]
+pub extern "C" fn rust_never_inlined() -> u32 {
+ 421
+}