2023-07-29 21:57:53 +00:00
|
|
|
//@ revisions: x32 x64
|
|
|
|
//@[x32] only-x86
|
|
|
|
//@[x64] only-x86_64
|
2017-03-22 04:47:25 +00:00
|
|
|
//@ compile-flags: -C no-prepopulate-passes
|
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
2021-12-10 00:15:33 +00:00
|
|
|
use std::arch::global_asm;
|
|
|
|
|
2017-03-22 04:47:25 +00:00
|
|
|
// CHECK-LABEL: foo
|
|
|
|
// CHECK: module asm
|
|
|
|
// this regex will capture the correct unconditional branch inst.
|
|
|
|
// CHECK: module asm "{{[[:space:]]+}}jmp baz"
|
2021-12-10 00:15:33 +00:00
|
|
|
global_asm!(
|
|
|
|
r#"
|
2017-03-22 04:47:25 +00:00
|
|
|
.global foo
|
|
|
|
foo:
|
|
|
|
jmp baz
|
2021-12-10 00:15:33 +00:00
|
|
|
"#
|
|
|
|
);
|
2017-03-22 04:47:25 +00:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
fn foo();
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @baz
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe extern "C" fn baz() {}
|