]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-14936.rs
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-14936.rs
1 // Copyright 2012-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 // compile-pass
12 #![allow(unused_macros)]
13 #![allow(dead_code)]
14 #![feature(asm)]
15
16 type History = Vec<&'static str>;
17
18 fn wrap<A>(x:A, which: &'static str, history: &mut History) -> A {
19     history.push(which);
20     x
21 }
22
23 macro_rules! demo {
24     ( $output_constraint:tt ) => {
25         {
26             let mut x: isize = 0;
27             let y: isize = 1;
28
29             let mut history: History = vec![];
30             unsafe {
31                 asm!("mov ($1), $0"
32                      : $output_constraint (*wrap(&mut x, "out", &mut history))
33                      : "r"(&wrap(y, "in", &mut history))
34                      :: "volatile");
35             }
36             assert_eq!((x,y), (1,1));
37             let b: &[_] = &["out", "in"];
38             assert_eq!(history, b);
39         }
40     }
41 }
42
43 #[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
44 fn main() {
45     fn out_write_only_expr_then_in_expr() {
46         demo!("=r")
47     }
48
49     fn out_read_write_expr_then_in_expr() {
50         demo!("+r")
51     }
52
53     out_write_only_expr_then_in_expr();
54     out_read_write_expr_then_in_expr();
55 }
56
57 #[cfg(all(not(target_arch = "x86"), not(target_arch = "x86_64")))]
58 pub fn main() {}