2014-03-09 23:41:18 +01: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 00:09:12 -07:00
|
|
|
// ignore-android
|
2016-05-20 10:56:39 +02:00
|
|
|
// ignore-arm
|
|
|
|
// ignore-aarch64
|
2014-03-18 00:09:12 -07:00
|
|
|
|
2015-03-02 21:46:31 +11:00
|
|
|
#![feature(asm, rustc_attrs)]
|
2014-03-09 23:41:18 +01:00
|
|
|
|
2014-10-27 15:37:07 -07:00
|
|
|
#![allow(dead_code, non_upper_case_globals)]
|
2014-03-09 23:41:18 +01:00
|
|
|
|
2014-09-24 20:22:57 -07:00
|
|
|
#[cfg(any(target_arch = "x86",
|
|
|
|
target_arch = "x86_64"))]
|
2015-03-02 21:46:31 +11:00
|
|
|
#[rustc_error]
|
|
|
|
pub fn main() { //~ ERROR compilation successful
|
2014-03-09 23:41:18 +01:00
|
|
|
// assignment not dead
|
2015-01-08 21:54:35 +11:00
|
|
|
let mut x: isize = 0;
|
2014-03-09 23:41:18 +01:00
|
|
|
unsafe {
|
|
|
|
// extra colon
|
2015-02-17 09:48:01 -05:00
|
|
|
asm!("mov $1, $0" : "=r"(x) : "r"(5_usize), "0"(x) : : "cc");
|
2014-03-09 23:41:18 +01:00
|
|
|
//~^ WARNING unrecognized option
|
|
|
|
}
|
|
|
|
assert_eq!(x, 5);
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
// comma in place of a colon
|
2015-02-18 05:42:01 -05:00
|
|
|
asm!("add $2, $1; mov $1, $0" : "=r"(x) : "r"(x), "r"(8_usize) : "cc", "volatile");
|
2014-08-23 12:41:32 +02:00
|
|
|
//~^ WARNING expected a clobber, found an option
|
2014-03-09 23:41:18 +01:00
|
|
|
}
|
|
|
|
assert_eq!(x, 13);
|
|
|
|
}
|