]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/asm-out-no-modifier.rs
Convert most code to new inner attribute syntax.
[rust.git] / src / test / compile-fail / asm-out-no-modifier.rs
1 // Copyright 2012-2013-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-fast #[feature] doesn't work with check-fast
12 #![feature(asm)]
13
14 fn foo(x: int) { println!("{}", x); }
15
16 #[cfg(target_arch = "x86")]
17 #[cfg(target_arch = "x86_64")]
18 #[cfg(target_arch = "arm")]
19 pub fn main() {
20     let x: int;
21     unsafe {
22         asm!("mov $1, $0" : "r"(x) : "r"(5u)); //~ ERROR output operand constraint lacks '='
23     }
24     foo(x);
25 }
26
27 #[cfg(not(target_arch = "x86"), not(target_arch = "x86_64"), not(target_arch = "arm"))]
28 pub fn main() {}