mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 06:34:22 +00:00
117 lines
3.7 KiB
Plaintext
117 lines
3.7 KiB
Plaintext
error: invalid register `s1`: s1 is used internally by LLVM and cannot be used as an operand for inline asm
|
|
--> $DIR/bad-reg.rs:33:18
|
|
|
|
|
LL | asm!("", out("s1") _);
|
|
| ^^^^^^^^^^^
|
|
|
|
error: invalid register `fp`: the frame pointer cannot be used as an operand for inline asm
|
|
--> $DIR/bad-reg.rs:35:18
|
|
|
|
|
LL | asm!("", out("fp") _);
|
|
| ^^^^^^^^^^^
|
|
|
|
error: invalid register `sp`: the stack pointer cannot be used as an operand for inline asm
|
|
--> $DIR/bad-reg.rs:37:18
|
|
|
|
|
LL | asm!("", out("sp") _);
|
|
| ^^^^^^^^^^^
|
|
|
|
error: invalid register `gp`: the global pointer cannot be used as an operand for inline asm
|
|
--> $DIR/bad-reg.rs:39:18
|
|
|
|
|
LL | asm!("", out("gp") _);
|
|
| ^^^^^^^^^^^
|
|
|
|
error: invalid register `gp`: the global pointer cannot be used as an operand for inline asm
|
|
--> $DIR/bad-reg.rs:41:18
|
|
|
|
|
LL | asm!("", out("gp") _);
|
|
| ^^^^^^^^^^^
|
|
|
|
error: invalid register `tp`: the thread pointer cannot be used as an operand for inline asm
|
|
--> $DIR/bad-reg.rs:43:18
|
|
|
|
|
LL | asm!("", out("tp") _);
|
|
| ^^^^^^^^^^^
|
|
|
|
error: invalid register `zero`: the zero register cannot be used as an operand for inline asm
|
|
--> $DIR/bad-reg.rs:45:18
|
|
|
|
|
LL | asm!("", out("zero") _);
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: register class `vreg` can only be used as a clobber, not as an input or output
|
|
--> $DIR/bad-reg.rs:96:18
|
|
|
|
|
LL | asm!("", in("v0") x);
|
|
| ^^^^^^^^^^
|
|
|
|
error: register class `vreg` can only be used as a clobber, not as an input or output
|
|
--> $DIR/bad-reg.rs:99:18
|
|
|
|
|
LL | asm!("", out("v0") x);
|
|
| ^^^^^^^^^^^
|
|
|
|
error: register class `vreg` can only be used as a clobber, not as an input or output
|
|
--> $DIR/bad-reg.rs:102:26
|
|
|
|
|
LL | asm!("/* {} */", in(vreg) x);
|
|
| ^^^^^^^^^^
|
|
|
|
error: register class `vreg` can only be used as a clobber, not as an input or output
|
|
--> $DIR/bad-reg.rs:105:26
|
|
|
|
|
LL | asm!("/* {} */", out(vreg) _);
|
|
| ^^^^^^^^^^^
|
|
|
|
error: register class `freg` requires at least one of the following target features: d, f
|
|
--> $DIR/bad-reg.rs:82:26
|
|
|
|
|
LL | asm!("/* {} */", in(freg) f);
|
|
| ^^^^^^^^^^
|
|
|
|
error: register class `freg` requires at least one of the following target features: d, f
|
|
--> $DIR/bad-reg.rs:84:26
|
|
|
|
|
LL | asm!("/* {} */", out(freg) _);
|
|
| ^^^^^^^^^^^
|
|
|
|
error: register class `freg` requires at least one of the following target features: d, f
|
|
--> $DIR/bad-reg.rs:86:26
|
|
|
|
|
LL | asm!("/* {} */", in(freg) d);
|
|
| ^^^^^^^^^^
|
|
|
|
error: register class `freg` requires at least one of the following target features: d, f
|
|
--> $DIR/bad-reg.rs:89:26
|
|
|
|
|
LL | asm!("/* {} */", out(freg) d);
|
|
| ^^^^^^^^^^^
|
|
|
|
error: type `i32` cannot be used with this register class
|
|
--> $DIR/bad-reg.rs:96:27
|
|
|
|
|
LL | asm!("", in("v0") x);
|
|
| ^
|
|
|
|
|
= note: register class `vreg` supports these types:
|
|
|
|
error: type `i32` cannot be used with this register class
|
|
--> $DIR/bad-reg.rs:99:28
|
|
|
|
|
LL | asm!("", out("v0") x);
|
|
| ^
|
|
|
|
|
= note: register class `vreg` supports these types:
|
|
|
|
error: type `i32` cannot be used with this register class
|
|
--> $DIR/bad-reg.rs:102:35
|
|
|
|
|
LL | asm!("/* {} */", in(vreg) x);
|
|
| ^
|
|
|
|
|
= note: register class `vreg` supports these types:
|
|
|
|
error: aborting due to 18 previous errors
|
|
|