rust/tests/ui/force-inlining/asm.stderr
Antoni Boucher 2a88ea1892 Bless tests
2025-12-05 09:51:27 -05:00

34 lines
1.3 KiB
Text

error: `instruction_set_a32` could not be inlined into `t32` but is required to be inlined
--> $DIR/asm.rs:46:5
|
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
--> $DIR/asm.rs:50:5
|
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
--> $DIR/asm.rs:55:5
|
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
--> $DIR/asm.rs:57:5
|
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