blob: d178c65dff4970e68f803b59f737e516b61e1e19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// build-fail
// dont-check-compiler-stderr
// compile-flags: -C codegen-units=2
// ignore-emscripten
#![feature(llvm_asm)]
#![allow(deprecated)] // llvm_asm!
fn main() {
unsafe {
llvm_asm!("nowayisthisavalidinstruction"); //~ ERROR instruction
}
}
|