summary refs log tree commit diff
path: root/src/test/ui/simple_global_asm.rs
blob: d95fefebc0f9e12ceed1237ed6621eddab46d83d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// run-pass

#![feature(global_asm)]
#![feature(naked_functions)]
#![allow(dead_code)]

#[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
global_asm!(r#"
    .global foo
    .global _foo
foo:
_foo:
    ret
"#);

extern {
    fn foo();
}

#[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
fn main() { unsafe { foo(); } }

#[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
fn main() {}