2018-10-01 08:13:42 -05:00
|
|
|
error[E0669]: invalid value for constraint in inline assembly
|
2020-02-14 10:54:40 -06:00
|
|
|
--> $DIR/inline-asm-bad-operand.rs:22:29
|
2018-10-01 08:13:42 -05:00
|
|
|
|
|
2020-02-14 10:54:40 -06:00
|
|
|
LL | llvm_asm!("" :: "r"(""));
|
|
|
|
| ^^
|
2018-10-01 08:13:42 -05:00
|
|
|
|
|
|
|
error[E0669]: invalid value for constraint in inline assembly
|
2020-02-14 10:54:40 -06:00
|
|
|
--> $DIR/inline-asm-bad-operand.rs:27:37
|
2018-10-01 08:13:42 -05:00
|
|
|
|
|
2020-02-14 10:54:40 -06:00
|
|
|
LL | llvm_asm!("ret" : : "{rdi}"(target));
|
|
|
|
| ^^^^^^
|
2018-10-01 08:13:42 -05:00
|
|
|
|
|
|
|
error[E0669]: invalid value for constraint in inline assembly
|
2020-02-14 10:54:40 -06:00
|
|
|
--> $DIR/inline-asm-bad-operand.rs:34:34
|
2018-10-01 08:13:42 -05:00
|
|
|
|
|
2020-02-14 10:54:40 -06:00
|
|
|
LL | unsafe { llvm_asm!("" :: "i"(hello)) };
|
|
|
|
| ^^^^^
|
2018-10-01 08:13:42 -05:00
|
|
|
|
|
|
|
error[E0669]: invalid value for constraint in inline assembly
|
2020-02-14 10:54:40 -06:00
|
|
|
--> $DIR/inline-asm-bad-operand.rs:42:43
|
2018-10-01 08:13:42 -05:00
|
|
|
|
|
2020-02-14 10:54:40 -06:00
|
|
|
LL | llvm_asm!("movups $1, %xmm0"::"m"(arr));
|
|
|
|
| ^^^
|
2018-10-01 08:13:42 -05:00
|
|
|
|
|
|
|
error[E0669]: invalid value for constraint in inline assembly
|
2020-02-14 10:54:40 -06:00
|
|
|
--> $DIR/inline-asm-bad-operand.rs:49:37
|
2018-10-01 08:13:42 -05:00
|
|
|
|
|
2020-02-14 10:54:40 -06:00
|
|
|
LL | llvm_asm!("mov sp, $0"::"r"(addr));
|
|
|
|
| ^^^^
|
2018-10-01 08:13:42 -05:00
|
|
|
|
2018-10-30 16:09:56 -05:00
|
|
|
error[E0669]: invalid value for constraint in inline assembly
|
2020-02-14 10:54:40 -06:00
|
|
|
--> $DIR/inline-asm-bad-operand.rs:56:37
|
2018-10-30 16:09:56 -05:00
|
|
|
|
|
2020-02-14 10:54:40 -06:00
|
|
|
LL | llvm_asm!("mov sp, $0"::"r"(addr),
|
|
|
|
| ^^^^
|
2018-10-30 16:09:56 -05:00
|
|
|
|
|
|
|
error[E0669]: invalid value for constraint in inline assembly
|
2020-02-14 10:54:40 -06:00
|
|
|
--> $DIR/inline-asm-bad-operand.rs:57:37
|
2018-10-30 16:09:56 -05:00
|
|
|
|
|
2019-08-14 11:34:09 -05:00
|
|
|
LL | ... "r"("hello e0669"));
|
|
|
|
| ^^^^^^^^^^^^^
|
2018-10-30 16:09:56 -05:00
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
2018-10-01 08:13:42 -05:00
|
|
|
|
2019-11-12 05:09:02 -06:00
|
|
|
For more information about this error, try `rustc --explain E0669`.
|