rust/tests/codegen/global_asm.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
765 B
Rust
Raw Normal View History

2017-03-22 04:47:25 +00:00
// ignore-aarch64
// ignore-arm
// ignore-avr
// ignore-bpf
// ignore-bpf
2017-03-22 04:47:25 +00:00
// ignore-hexagon
// ignore-mips
// ignore-mips64
// ignore-msp430
// ignore-powerpc64
2017-03-22 04:47:25 +00:00
// ignore-powerpc
// ignore-sparc
// ignore-sparc64
2017-03-22 04:47:25 +00:00
// ignore-s390x
// ignore-thumb
// ignore-nvptx64
// 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"]
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"
global_asm!(
r#"
2017-03-22 04:47:25 +00:00
.global foo
foo:
jmp baz
"#
);
2017-03-22 04:47:25 +00:00
extern "C" {
fn foo();
}
// CHECK-LABEL: @baz
#[no_mangle]
pub unsafe extern "C" fn baz() {}