about summary refs log tree commit diff
path: root/tests/codegen/asm-sanitize-llvm.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/asm-sanitize-llvm.rs
parenta8e1186e3c14a54f7a38cc1183117dc7e77f4f82 (diff)
downloadrust-96e7eaf478f53cdf417ad681d2afa07b00abbdfd.tar.gz
rust-96e7eaf478f53cdf417ad681d2afa07b00abbdfd.zip
Move remaining inline assembly test files into asm directory
Diffstat (limited to 'tests/codegen/asm-sanitize-llvm.rs')
-rw-r--r--tests/codegen/asm-sanitize-llvm.rs30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/codegen/asm-sanitize-llvm.rs b/tests/codegen/asm-sanitize-llvm.rs
deleted file mode 100644
index fb332f9a0f3..00000000000
--- a/tests/codegen/asm-sanitize-llvm.rs
+++ /dev/null
@@ -1,30 +0,0 @@
-// FIXME(nagisa): remove the flags below once all targets support `asm!`.
-//@ compile-flags: --target x86_64-unknown-linux-gnu -Copt-level=0
-//@ needs-llvm-components: x86
-
-// Verify we sanitize the special tokens for the LLVM inline-assembly, ensuring people won't
-// inadvertently rely on the LLVM-specific syntax and features.
-#![no_core]
-#![feature(no_core, lang_items, rustc_attrs)]
-#![crate_type = "rlib"]
-#![allow(named_asm_labels)]
-
-#[rustc_builtin_macro]
-macro_rules! asm {
-    () => {};
-}
-
-#[lang = "sized"]
-trait Sized {}
-#[lang = "copy"]
-trait Copy {}
-
-pub unsafe fn we_escape_dollar_signs() {
-    // CHECK: call void asm sideeffect alignstack inteldialect "banana$$:"
-    asm!(r"banana$:",)
-}
-
-pub unsafe fn we_escape_escapes_too() {
-    // CHECK: call void asm sideeffect alignstack inteldialect "banana\{{(\\|5C)}}36:"
-    asm!(r"banana\36:",)
-}