2017-03-22 04:47:25 +00:00
|
|
|
// ignore-aarch64
|
|
|
|
// ignore-arm
|
|
|
|
// ignore-avr
|
2023-03-16 09:19:27 +00:00
|
|
|
// ignore-bpf
|
|
|
|
// ignore-bpf
|
2017-03-22 04:47:25 +00:00
|
|
|
// ignore-hexagon
|
|
|
|
// ignore-mips
|
|
|
|
// ignore-mips64
|
|
|
|
// ignore-msp430
|
2018-03-19 01:34:32 +00:00
|
|
|
// ignore-powerpc64
|
2017-03-22 04:47:25 +00:00
|
|
|
// ignore-powerpc
|
|
|
|
// ignore-sparc
|
2023-03-16 09:19:27 +00:00
|
|
|
// ignore-sparc64
|
2017-03-22 04:47:25 +00:00
|
|
|
// ignore-s390x
|
|
|
|
// ignore-thumb
|
|
|
|
// ignore-nvptx64
|
2023-03-16 09:19:27 +00:00
|
|
|
// ignore-spirv
|
2017-03-22 04:47:25 +00:00
|
|
|
// ignore-wasm32
|
|
|
|
// ignore-wasm64
|
|
|
|
// ignore-emscripten
|
2023-04-14 09:42:08 +00:00
|
|
|
// ignore-loongarch64
|
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() {}
|