mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
bytecode multiple. strucsize.asm tests both creation and instantiation of a nested structure. [1751] and [1752] fix bugs found during the testing of the instantiation portion of this testcase. A side effect of this change is that some errors are found in different phases, and the error messages are slightly different. Split reserve-error.asm testcase into two parts to still get full coverage. svn path=/trunk/yasm/; revision=1753
15 lines
146 B
NASM
15 lines
146 B
NASM
; Test res* family errors
|
|
a:
|
|
resb -5
|
|
resw 1.2
|
|
resd -1.2
|
|
resq 0xffffffff
|
|
rest a
|
|
|
|
[section .bss]
|
|
resb -5
|
|
resw 1.2
|
|
resd -1.2
|
|
resq 0xffffffff
|
|
rest a
|
|
|