mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
labels: pass the mangled name to the backend for fixups
ofmt->symdef() always takes the mangled label name, make sure we actually do the correct thing even for forward fixups. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
parent
84ca80abd7
commit
a7c8e39686
@ -146,7 +146,7 @@ static void out_symdef(union label *lptr)
|
||||
case LBL_EXTERN:
|
||||
case LBL_COMMON:
|
||||
if (lptr->defn.special)
|
||||
ofmt->symdef(lptr->defn.label, 0, 0, 3, lptr->defn.special);
|
||||
ofmt->symdef(lptr->defn.mangled, 0, 0, 3, lptr->defn.special);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user