rust/tests/codegen/global_asm.rs

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

29 lines
468 B
Rust
Raw Normal View History

// revisions: x32 x64
//[x32] only-x86
//[x64] only-x86_64
2017-03-22 12:47:25 +08:00
// compile-flags: -C no-prepopulate-passes
#![crate_type = "lib"]
use std::arch::global_asm;
2017-03-22 12:47:25 +08: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 12:47:25 +08:00
.global foo
foo:
jmp baz
"#
);
2017-03-22 12:47:25 +08:00
extern "C" {
fn foo();
}
// CHECK-LABEL: @baz
#[no_mangle]
pub unsafe extern "C" fn baz() {}