2024-12-10 12:06:57 +00:00
|
|
|
error: `instruction_set_a32` could not be inlined into `t32` but is required to be inlined
|
2025-02-24 09:26:54 +00:00
|
|
|
--> $DIR/asm.rs:45:5
|
2024-12-10 12:06:57 +00:00
|
|
|
|
|
|
|
|
LL | instruction_set_a32();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ ...`instruction_set_a32` called here
|
|
|
|
|
|
|
|
|
= note: could not be inlined due to: incompatible instruction set
|
|
|
|
|
|
|
|
error: `inline_always_and_using_inline_asm` could not be inlined into `t32` but is required to be inlined
|
2025-02-24 09:26:54 +00:00
|
|
|
--> $DIR/asm.rs:49:5
|
2024-12-10 12:06:57 +00:00
|
|
|
|
|
|
|
|
LL | inline_always_and_using_inline_asm();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ...`inline_always_and_using_inline_asm` called here
|
|
|
|
|
|
|
|
|
= note: could not be inlined due to: cannot move inline-asm across instruction sets
|
|
|
|
|
|
|
|
error: `instruction_set_a32` could not be inlined into `default` but is required to be inlined
|
2025-02-24 09:26:54 +00:00
|
|
|
--> $DIR/asm.rs:54:5
|
2024-12-10 12:06:57 +00:00
|
|
|
|
|
|
|
|
LL | instruction_set_a32();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ ...`instruction_set_a32` called here
|
|
|
|
|
|
|
|
|
= note: could not be inlined due to: incompatible instruction set
|
|
|
|
|
|
|
|
error: `instruction_set_t32` could not be inlined into `default` but is required to be inlined
|
2025-02-24 09:26:54 +00:00
|
|
|
--> $DIR/asm.rs:56:5
|
2024-12-10 12:06:57 +00:00
|
|
|
|
|
|
|
|
LL | instruction_set_t32();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ ...`instruction_set_t32` called here
|
|
|
|
|
|
|
|
|
= note: could not be inlined due to: incompatible instruction set
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|