rust/tests/codegen/global_asm_x2.rs

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

48 lines
759 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"]
#![no_std]
use core::arch::global_asm;
2017-03-22 04:47:25 +00:00
// CHECK-LABEL: foo
// CHECK: module asm
// CHECK: module asm "{{[[:space:]]+}}jmp baz"
// any other global_asm will be appended to this first block, so:
// CHECK-LABEL: bar
// CHECK: module asm "{{[[:space:]]+}}jmp quux"
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() {}
// no checks here; this has been appended to the first occurrence
global_asm!(
r#"
2017-03-22 04:47:25 +00:00
.global bar
bar:
jmp quux
"#
);
2017-03-22 04:47:25 +00:00
extern "C" {
fn bar();
}
#[no_mangle]
pub unsafe extern "C" fn quux() {}