about summary refs log tree commit diff
path: root/tests/codegen/cross-crate-inlining
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-07-21 14:34:12 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2025-07-22 14:28:48 +0200
commita27f3e3fd1e4d16160f8885b6b06665b5319f56c (patch)
treeb033935392cbadf6f85d2dbddf433a88e323aeeb /tests/codegen/cross-crate-inlining
parented93c1783b404d728d4809973a0550eb33cd293f (diff)
downloadrust-a27f3e3fd1e4d16160f8885b6b06665b5319f56c.tar.gz
rust-a27f3e3fd1e4d16160f8885b6b06665b5319f56c.zip
Rename `tests/codegen` into `tests/codegen-llvm`
Diffstat (limited to 'tests/codegen/cross-crate-inlining')
-rw-r--r--tests/codegen/cross-crate-inlining/always-inline.rs13
-rw-r--r--tests/codegen/cross-crate-inlining/auxiliary/always.rs20
-rw-r--r--tests/codegen/cross-crate-inlining/auxiliary/leaf.rs20
-rw-r--r--tests/codegen/cross-crate-inlining/auxiliary/never.rs20
-rw-r--r--tests/codegen/cross-crate-inlining/leaf-inlining.rs20
-rw-r--r--tests/codegen/cross-crate-inlining/never-inline.rs13
6 files changed, 0 insertions, 106 deletions
diff --git a/tests/codegen/cross-crate-inlining/always-inline.rs b/tests/codegen/cross-crate-inlining/always-inline.rs
deleted file mode 100644
index df28b3fe197..00000000000
--- a/tests/codegen/cross-crate-inlining/always-inline.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-//@ compile-flags: -Copt-level=3
-//@ aux-build:always.rs
-
-#![crate_type = "lib"]
-
-extern crate always;
-
-// Check that we inline a cross-crate call, even though it isn't a leaf
-#[no_mangle]
-pub fn outer() -> String {
-    // CHECK-NOT: call {{.*}}stem_fn
-    always::stem_fn()
-}
diff --git a/tests/codegen/cross-crate-inlining/auxiliary/always.rs b/tests/codegen/cross-crate-inlining/auxiliary/always.rs
deleted file mode 100644
index 6ee3f81e3c8..00000000000
--- a/tests/codegen/cross-crate-inlining/auxiliary/always.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-//@ compile-flags: -Copt-level=3 -Zcross-crate-inline-threshold=always
-
-#![crate_type = "lib"]
-
-// This function *looks* like it contains a call, but that call will be optimized out by MIR
-// optimizations.
-pub fn leaf_fn() -> String {
-    String::new()
-}
-
-// This function contains a call, even after MIR optimizations. It is only eligible for
-// cross-crate-inlining with "always".
-pub fn stem_fn() -> String {
-    inner()
-}
-
-#[inline(never)]
-fn inner() -> String {
-    String::from("test")
-}
diff --git a/tests/codegen/cross-crate-inlining/auxiliary/leaf.rs b/tests/codegen/cross-crate-inlining/auxiliary/leaf.rs
deleted file mode 100644
index d059a3d0a73..00000000000
--- a/tests/codegen/cross-crate-inlining/auxiliary/leaf.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-//@ compile-flags: -Copt-level=3
-
-#![crate_type = "lib"]
-
-// This function *looks* like it contains a call, but that call will be optimized out by MIR
-// optimizations.
-pub fn leaf_fn() -> String {
-    String::new()
-}
-
-// This function contains a call, even after MIR optimizations. It is only eligible for
-// cross-crate-inlining with "always".
-pub fn stem_fn() -> String {
-    inner()
-}
-
-#[inline(never)]
-fn inner() -> String {
-    String::from("test")
-}
diff --git a/tests/codegen/cross-crate-inlining/auxiliary/never.rs b/tests/codegen/cross-crate-inlining/auxiliary/never.rs
deleted file mode 100644
index 55c90809ec1..00000000000
--- a/tests/codegen/cross-crate-inlining/auxiliary/never.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-//@ compile-flags: -Copt-level=3 -Zcross-crate-inline-threshold=never
-
-#![crate_type = "lib"]
-
-// This function *looks* like it contains a call, but that call will be optimized out by MIR
-// optimizations.
-pub fn leaf_fn() -> String {
-    String::new()
-}
-
-// This function contains a call, even after MIR optimizations. It is only eligible for
-// cross-crate-inlining with "always".
-pub fn stem_fn() -> String {
-    inner()
-}
-
-#[inline(never)]
-fn inner() -> String {
-    String::from("test")
-}
diff --git a/tests/codegen/cross-crate-inlining/leaf-inlining.rs b/tests/codegen/cross-crate-inlining/leaf-inlining.rs
deleted file mode 100644
index 37132312ca9..00000000000
--- a/tests/codegen/cross-crate-inlining/leaf-inlining.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-//@ compile-flags: -Copt-level=3 -Zcross-crate-inline-threshold=yes
-//@ aux-build:leaf.rs
-
-#![crate_type = "lib"]
-
-extern crate leaf;
-
-// Check that we inline a leaf cross-crate call
-#[no_mangle]
-pub fn leaf_outer() -> String {
-    // CHECK-NOT: call {{.*}}leaf_fn
-    leaf::leaf_fn()
-}
-
-// Check that we do not inline a non-leaf cross-crate call
-#[no_mangle]
-pub fn stem_outer() -> String {
-    // CHECK: call {{.*}}stem_fn
-    leaf::stem_fn()
-}
diff --git a/tests/codegen/cross-crate-inlining/never-inline.rs b/tests/codegen/cross-crate-inlining/never-inline.rs
deleted file mode 100644
index 759f65d9d42..00000000000
--- a/tests/codegen/cross-crate-inlining/never-inline.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-//@ compile-flags: -Copt-level=3
-//@ aux-build:never.rs
-
-#![crate_type = "lib"]
-
-extern crate never;
-
-// Check that we do not inline a cross-crate call, even though it is a leaf
-#[no_mangle]
-pub fn outer() -> String {
-    // CHECK: call {{.*}}leaf_fn
-    never::leaf_fn()
-}