Rollup merge of #71317 - RalfJung:unleash-inline-asm, r=ecstatic-morse
miri-unleash test for llvm_asm r? @oli-obk @ecstatic-morse
This commit is contained in:
commit
b20bd73673
14
src/test/ui/consts/miri_unleashed/inline_asm.rs
Normal file
14
src/test/ui/consts/miri_unleashed/inline_asm.rs
Normal file
@ -0,0 +1,14 @@
|
||||
// compile-flags: -Zunleash-the-miri-inside-of-you
|
||||
// only-x86_64
|
||||
#![feature(llvm_asm)]
|
||||
#![allow(const_err)]
|
||||
|
||||
fn main() {}
|
||||
|
||||
// Make sure we catch executing inline assembly.
|
||||
static TEST_BAD: () = {
|
||||
unsafe { llvm_asm!("xor %eax, %eax" ::: "eax"); }
|
||||
//~^ ERROR could not evaluate static initializer
|
||||
//~| NOTE in this expansion of llvm_asm!
|
||||
//~| NOTE inline assembly is not supported
|
||||
};
|
11
src/test/ui/consts/miri_unleashed/inline_asm.stderr
Normal file
11
src/test/ui/consts/miri_unleashed/inline_asm.stderr
Normal file
@ -0,0 +1,11 @@
|
||||
error[E0080]: could not evaluate static initializer
|
||||
--> $DIR/inline_asm.rs:10:14
|
||||
|
|
||||
LL | unsafe { llvm_asm!("xor %eax, %eax" ::: "eax"); }
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ inline assembly is not supported
|
||||
|
|
||||
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0080`.
|
Loading…
Reference in New Issue
Block a user