about summary refs log tree commit diff
path: root/tests/codegen/asm/sanitize-llvm.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen/asm/sanitize-llvm.rs')
-rw-r--r--tests/codegen/asm/sanitize-llvm.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/codegen/asm/sanitize-llvm.rs b/tests/codegen/asm/sanitize-llvm.rs
deleted file mode 100644
index 97a77033284..00000000000
--- a/tests/codegen/asm/sanitize-llvm.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-//@ add-core-stubs
-// 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)]
-#![crate_type = "rlib"]
-#![allow(named_asm_labels)]
-
-extern crate minicore;
-use minicore::*;
-
-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:",)
-}