summary refs log tree commit diff
path: root/src/test/run-pass/conditional-compile-arch.rs
blob: e66a4722e03e9ef037678fc693f3f8776effa470 (plain)
1
2
3
4
5
#[cfg(target_arch = "x86")]
fn main() { }

#[cfg(target_arch = "x86_64")]
fn main() { }