2023-07-29 16:57:53 -05:00
|
|
|
//@ revisions: x32 x64
|
|
|
|
//@[x32] only-x86
|
|
|
|
//@[x64] only-x86_64
|
2017-03-21 23:47:25 -05:00
|
|
|
//@ compile-flags: -C no-prepopulate-passes
|
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
2021-12-09 18:15:33 -06:00
|
|
|
use std::arch::global_asm;
|
|
|
|
|
2017-03-21 23:47:25 -05:00
|
|
|
// CHECK-LABEL: foo
|
|
|
|
// CHECK: module asm
|
|
|
|
// CHECK: module asm "{{[[:space:]]+}}jmp baz"
|
|
|
|
global_asm!(include_str!("foo.s"));
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
fn foo();
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @baz
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe extern "C" fn baz() {}
|