2014-03-09 17:41:18 -05:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-03-18 02:09:12 -05:00
|
|
|
// ignore-android
|
2016-05-20 03:56:39 -05:00
|
|
|
// ignore-arm
|
|
|
|
// ignore-aarch64
|
2014-03-18 02:09:12 -05:00
|
|
|
|
2015-03-02 04:46:31 -06:00
|
|
|
#![feature(asm, rustc_attrs)]
|
2014-03-09 17:41:18 -05:00
|
|
|
|
2014-10-27 17:37:07 -05:00
|
|
|
#![allow(dead_code, non_upper_case_globals)]
|
2014-03-09 17:41:18 -05:00
|
|
|
|
2014-09-24 22:22:57 -05:00
|
|
|
#[cfg(any(target_arch = "x86",
|
|
|
|
target_arch = "x86_64"))]
|
2015-03-02 04:46:31 -06:00
|
|
|
#[rustc_error]
|
|
|
|
pub fn main() { //~ ERROR compilation successful
|
2014-03-09 17:41:18 -05:00
|
|
|
// assignment not dead
|
2015-01-08 04:54:35 -06:00
|
|
|
let mut x: isize = 0;
|
2014-03-09 17:41:18 -05:00
|
|
|
unsafe {
|
|
|
|
// extra colon
|
2015-02-17 08:48:01 -06:00
|
|
|
asm!("mov $1, $0" : "=r"(x) : "r"(5_usize), "0"(x) : : "cc");
|
2014-03-09 17:41:18 -05:00
|
|
|
//~^ WARNING unrecognized option
|
|
|
|
}
|
|
|
|
assert_eq!(x, 5);
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
// comma in place of a colon
|
2015-02-18 04:42:01 -06:00
|
|
|
asm!("add $2, $1; mov $1, $0" : "=r"(x) : "r"(x), "r"(8_usize) : "cc", "volatile");
|
2014-08-23 05:41:32 -05:00
|
|
|
//~^ WARNING expected a clobber, found an option
|
2014-03-09 17:41:18 -05:00
|
|
|
}
|
|
|
|
assert_eq!(x, 13);
|
|
|
|
}
|