2018-03-26 15:04:27 -05:00
|
|
|
error[E0660]: malformed inline assembly
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/E0660.rs:5:5
|
2018-03-26 15:04:27 -05:00
|
|
|
|
|
2020-02-14 10:54:40 -06:00
|
|
|
LL | llvm_asm!("nop" "nop");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2018-03-26 15:04:27 -05:00
|
|
|
|
|
|
|
error[E0660]: malformed inline assembly
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/E0660.rs:7:5
|
2018-03-26 15:04:27 -05:00
|
|
|
|
|
2020-02-14 10:54:40 -06:00
|
|
|
LL | llvm_asm!("nop" "nop" : "=r"(a));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-03-26 15:04:27 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-11-12 05:09:02 -06:00
|
|
|
For more information about this error, try `rustc --explain E0660`.
|