about summary refs log tree commit diff
path: root/tests/codegen/global_asm.rs
diff options
context:
space:
mode:
authorTaiki Endo <te316e89@gmail.com>2024-11-01 22:12:55 +0900
committerTaiki Endo <te316e89@gmail.com>2024-11-01 22:12:55 +0900
commit96e7eaf478f53cdf417ad681d2afa07b00abbdfd (patch)
treeac8bbc17410f3a71f96f8325955b59ae5730c20c /tests/codegen/global_asm.rs
parenta8e1186e3c14a54f7a38cc1183117dc7e77f4f82 (diff)
downloadrust-96e7eaf478f53cdf417ad681d2afa07b00abbdfd.tar.gz
rust-96e7eaf478f53cdf417ad681d2afa07b00abbdfd.zip
Move remaining inline assembly test files into asm directory
Diffstat (limited to 'tests/codegen/global_asm.rs')
-rw-r--r--tests/codegen/global_asm.rs28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/codegen/global_asm.rs b/tests/codegen/global_asm.rs
deleted file mode 100644
index 32075daa3cf..00000000000
--- a/tests/codegen/global_asm.rs
+++ /dev/null
@@ -1,28 +0,0 @@
-//@ revisions: x32 x64
-//@[x32] only-x86
-//@[x64] only-x86_64
-//@ compile-flags: -C no-prepopulate-passes
-
-#![crate_type = "lib"]
-
-use std::arch::global_asm;
-
-// CHECK-LABEL: foo
-// CHECK: module asm
-// this regex will capture the correct unconditional branch inst.
-// CHECK: module asm "{{[[:space:]]+}}jmp baz"
-global_asm!(
-    r#"
-    .global foo
-foo:
-    jmp baz
-"#
-);
-
-extern "C" {
-    fn foo();
-}
-
-// CHECK-LABEL: @baz
-#[no_mangle]
-pub unsafe extern "C" fn baz() {}