-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Closed
Labels
A-inline-assemblyArea: Inline assembly (`asm!(…)`)Area: Inline assembly (`asm!(…)`)requires-nightlyThis issue requires a nightly compiler in some way.This issue requires a nightly compiler in some way.
Description
In the following inline assembly
asm!("movq $0, %rax
movq $4, %rcx
loop:
addq $1, %rax
cmpq %rax, %rcx
ja loop" :::);
the label loop
won't get a symbol in the output binary (with -g
turned on). It feels like an appropriate symbol might be of the format module::struct::function::hash
similar to other symbols.
Metadata
Metadata
Assignees
Labels
A-inline-assemblyArea: Inline assembly (`asm!(…)`)Area: Inline assembly (`asm!(…)`)requires-nightlyThis issue requires a nightly compiler in some way.This issue requires a nightly compiler in some way.