Skip to content

Commit c7d591d

Browse files
committed
Remove pretty tests for LLVM-style inline assembly
1 parent 11d014d commit c7d591d

File tree

3 files changed

+3
-17
lines changed

3 files changed

+3
-17
lines changed

src/test/pretty/llvm-asm-clobbers.rs

-3
This file was deleted.

src/test/pretty/llvm-asm-options.rs

-11
This file was deleted.

src/test/pretty/raw-str-nonexpr.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// pp-exact
22

3-
#![feature(llvm_asm)]
4-
53
#[cfg(foo = r#"just parse this"#)]
64
extern crate blah as blah;
75

8-
fn main() { unsafe { llvm_asm!(r###"blah"###); } }
6+
use std::arch::asm;
7+
8+
fn main() { unsafe { asm!(r###"blah"###); } }

0 commit comments

Comments
 (0)