mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
513 B
Plaintext
18 lines
513 B
Plaintext
error[E0472]: inline assembly is unsupported on this target
|
|
--> $DIR/bad-arch.rs:22:9
|
|
|
|
|
LL | asm!("");
|
|
| ^^^^^^^^
|
|
|
|
error[E0472]: inline assembly is unsupported on this target
|
|
--> $DIR/bad-arch.rs:27:1
|
|
|
|
|
LL | global_asm!("");
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= note: this error originates in the macro `global_asm` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0472`.
|