error: avoid using named labels in inline assembly
--> src/process.rs:630:10
|
630 | ".l1:",
| ^^^
|
= help: only local labels of the form `<number>:` should be used in inline asm
= note: see the asm section of Rust By Example <https://doc.rust-lang.org/nightly/rust-by-example/unsafe/asm.html#labels> for more information
= note: `#[deny(named_asm_labels)]` on by default
I'm not familiar with asm code, do you know how to fix it?
Thx
It happened on this page
A no_std rust library
Here's what the issue is
Compilation Failure in rust 1.78.0-nightly
I'm not familiar with asm code, do you know how to fix it? Thx