rust/tests/codegen/global_asm_include.rs

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

22 lines
382 B
Rust
Raw Normal View History

//@ 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"]
use std::arch::global_asm;
2017-03-22 04:47:25 +00: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() {}