mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-05 02:47:34 +03:00
Remove pretty tests for LLVM-style inline assembly
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
#![feature(llvm_asm)]
|
||||
|
||||
pub fn main() { unsafe { llvm_asm!("" : : : "hello", "world") }; }
|
||||
@@ -1,11 +0,0 @@
|
||||
#![feature(llvm_asm)]
|
||||
|
||||
// pp-exact
|
||||
|
||||
pub fn main() {
|
||||
unsafe {
|
||||
llvm_asm!("" : : : : "volatile");
|
||||
llvm_asm!("" : : : : "alignstack");
|
||||
llvm_asm!("" : : : : "intel");
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
// pp-exact
|
||||
|
||||
#![feature(llvm_asm)]
|
||||
|
||||
#[cfg(foo = r#"just parse this"#)]
|
||||
extern crate blah as blah;
|
||||
|
||||
fn main() { unsafe { llvm_asm!(r###"blah"###); } }
|
||||
use std::arch::asm;
|
||||
|
||||
fn main() { unsafe { asm!(r###"blah"###); } }
|
||||
|
||||
Reference in New Issue
Block a user