2021-06-13 13:19:39 -05:00
|
|
|
// FIXME(nagisa): remove the flags below once all targets support `asm!`.
|
2023-10-06 19:29:42 -05:00
|
|
|
//@ compile-flags: --target x86_64-unknown-linux-gnu -Copt-level=0
|
2021-06-13 13:19:39 -05:00
|
|
|
//@ needs-llvm-components: x86
|
2021-02-05 18:26:35 -06:00
|
|
|
|
|
|
|
// 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"]
|
2021-07-22 18:26:16 -05:00
|
|
|
#![allow(named_asm_labels)]
|
2021-02-05 18:26:35 -06:00
|
|
|
|
|
|
|
#[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$$:"
|
2024-05-28 23:11:20 -05:00
|
|
|
asm!(r"banana$:",)
|
2021-02-05 18:26:35 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub unsafe fn we_escape_escapes_too() {
|
|
|
|
// CHECK: call void asm sideeffect alignstack inteldialect "banana\{{(\\|5C)}}36:"
|
2024-05-28 23:11:20 -05:00
|
|
|
asm!(r"banana\36:",)
|
2021-02-05 18:26:35 -06:00
|
|
|
}
|