46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
error[E0669]: invalid value for constraint in inline assembly
|
|
--> $DIR/inline-asm-bad-operand.rs:21:24
|
|
|
|
|
LL | asm!("" :: "r"("")); //~ ERROR E0669
|
|
| ^^
|
|
|
|
error[E0669]: invalid value for constraint in inline assembly
|
|
--> $DIR/inline-asm-bad-operand.rs:26:32
|
|
|
|
|
LL | asm!("ret" : : "{rdi}"(target)); //~ ERROR E0669
|
|
| ^^^^^^
|
|
|
|
error[E0669]: invalid value for constraint in inline assembly
|
|
--> $DIR/inline-asm-bad-operand.rs:33:29
|
|
|
|
|
LL | unsafe { asm!("" :: "i"(hello)) }; //~ ERROR E0669
|
|
| ^^^^^
|
|
|
|
error[E0669]: invalid value for constraint in inline assembly
|
|
--> $DIR/inline-asm-bad-operand.rs:41:38
|
|
|
|
|
LL | asm!("movups $1, %xmm0"::"m"(arr)); //~ ERROR E0669
|
|
| ^^^
|
|
|
|
error[E0669]: invalid value for constraint in inline assembly
|
|
--> $DIR/inline-asm-bad-operand.rs:48:32
|
|
|
|
|
LL | asm!("mov sp, $0"::"r"(addr)); //~ ERROR E0669
|
|
| ^^^^
|
|
|
|
error[E0669]: invalid value for constraint in inline assembly
|
|
--> $DIR/inline-asm-bad-operand.rs:55:32
|
|
|
|
|
LL | asm!("mov sp, $0"::"r"(addr), //~ ERROR E0669
|
|
| ^^^^
|
|
|
|
error[E0669]: invalid value for constraint in inline assembly
|
|
--> $DIR/inline-asm-bad-operand.rs:56:32
|
|
|
|
|
LL | "r"("hello e0669")); //~ ERROR E0669
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 7 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0669`.
|