mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
e38654a24e
We need to always define the end symbol, otherwise we might find ourselves in a situation where the alignment code grows (common!) and then the symbol is defined late. Reported-by: ig <glucksmann@avast.com> Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
23 lines
153 B
NASM
23 lines
153 B
NASM
bits 64
|
|
default rel
|
|
|
|
%use smartalign
|
|
|
|
section .text code align=32
|
|
|
|
align 32
|
|
|
|
nop
|
|
jz LDone
|
|
|
|
%rep 10
|
|
nop
|
|
%endrep
|
|
|
|
align 16
|
|
%rep 115
|
|
nop
|
|
%endrep
|
|
|
|
LDone:
|