2024-06-24 17:37:44 -05:00
|
|
|
error: avoid using labels containing only the digits `0` and `1` in inline assembly
|
|
|
|
--> $DIR/binary_asm_labels.rs:11:15
|
|
|
|
|
|
|
|
|
LL | asm!("0: jmp 0b");
|
|
|
|
| ^ use a different label that doesn't start with `0` or `1`
|
|
|
|
|
|
2024-07-18 15:12:28 -05:00
|
|
|
= help: start numbering with `2` instead
|
|
|
|
= note: an LLVM bug makes these labels ambiguous with a binary literal number on x86
|
|
|
|
= note: see <https://github.com/llvm/llvm-project/issues/99547> for more information
|
2024-06-24 17:37:44 -05:00
|
|
|
= note: `#[deny(binary_asm_labels)]` on by default
|
|
|
|
|
|
|
|
error: avoid using labels containing only the digits `0` and `1` in inline assembly
|
|
|
|
--> $DIR/binary_asm_labels.rs:12:15
|
|
|
|
|
|
|
|
|
LL | asm!("1: jmp 1b");
|
|
|
|
| ^ use a different label that doesn't start with `0` or `1`
|
|
|
|
|
|
2024-07-18 15:12:28 -05:00
|
|
|
= help: start numbering with `2` instead
|
|
|
|
= note: an LLVM bug makes these labels ambiguous with a binary literal number on x86
|
|
|
|
= note: see <https://github.com/llvm/llvm-project/issues/99547> for more information
|
2024-06-24 17:37:44 -05:00
|
|
|
|
|
|
|
error: avoid using labels containing only the digits `0` and `1` in inline assembly
|
|
|
|
--> $DIR/binary_asm_labels.rs:13:15
|
|
|
|
|
|
|
|
|
LL | asm!("10: jmp 10b");
|
|
|
|
| ^^ use a different label that doesn't start with `0` or `1`
|
|
|
|
|
|
2024-07-18 15:12:28 -05:00
|
|
|
= help: start numbering with `2` instead
|
|
|
|
= note: an LLVM bug makes these labels ambiguous with a binary literal number on x86
|
|
|
|
= note: see <https://github.com/llvm/llvm-project/issues/99547> for more information
|
2024-06-24 17:37:44 -05:00
|
|
|
|
|
|
|
error: avoid using labels containing only the digits `0` and `1` in inline assembly
|
|
|
|
--> $DIR/binary_asm_labels.rs:14:15
|
|
|
|
|
|
|
|
|
LL | asm!("01: jmp 01b");
|
|
|
|
| ^^ use a different label that doesn't start with `0` or `1`
|
|
|
|
|
|
2024-07-18 15:12:28 -05:00
|
|
|
= help: start numbering with `2` instead
|
|
|
|
= note: an LLVM bug makes these labels ambiguous with a binary literal number on x86
|
|
|
|
= note: see <https://github.com/llvm/llvm-project/issues/99547> for more information
|
2024-06-24 17:37:44 -05:00
|
|
|
|
|
|
|
error: avoid using labels containing only the digits `0` and `1` in inline assembly
|
|
|
|
--> $DIR/binary_asm_labels.rs:15:15
|
|
|
|
|
|
|
|
|
LL | asm!("1001101: jmp 1001101b");
|
|
|
|
| ^^^^^^^ use a different label that doesn't start with `0` or `1`
|
|
|
|
|
|
2024-07-18 15:12:28 -05:00
|
|
|
= help: start numbering with `2` instead
|
|
|
|
= note: an LLVM bug makes these labels ambiguous with a binary literal number on x86
|
|
|
|
= note: see <https://github.com/llvm/llvm-project/issues/99547> for more information
|
2024-06-24 17:37:44 -05:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|