about summary refs log tree commit diff
path: root/tests/codegen/amdgpu-addrspacecast.rs
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/amdgpu-addrspacecast.rs
parented93c1783b404d728d4809973a0550eb33cd293f (diff)
downloadrust-a27f3e3fd1e4d16160f8885b6b06665b5319f56c.tar.gz
rust-a27f3e3fd1e4d16160f8885b6b06665b5319f56c.zip
Rename `tests/codegen` into `tests/codegen-llvm`
Diffstat (limited to 'tests/codegen/amdgpu-addrspacecast.rs')
-rw-r--r--tests/codegen/amdgpu-addrspacecast.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/codegen/amdgpu-addrspacecast.rs b/tests/codegen/amdgpu-addrspacecast.rs
deleted file mode 100644
index 7fe630a7efa..00000000000
--- a/tests/codegen/amdgpu-addrspacecast.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// Check that pointers are casted to addrspace(0) before they are used
-
-//@ compile-flags: --crate-type=rlib --target=amdgcn-amd-amdhsa -Ctarget-cpu=gfx900
-//@ needs-llvm-components: amdgpu
-//@ add-core-stubs
-#![feature(no_core)]
-#![no_core]
-
-extern crate minicore;
-
-// CHECK-LABEL: @ref_of_local
-// CHECK: [[alloca:%[0-9]]] = alloca
-// CHECK: %i = addrspacecast ptr addrspace(5) [[alloca]] to ptr
-#[no_mangle]
-pub fn ref_of_local(f: fn(&i32)) {
-    let i = 0;
-    f(&i);
-}