mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
If an expression of the form INT+(a+b)+INT was simplified, constant folding would combine the ints, but then the level stage (to make INT+a+b) would start reading from the second (deleted due to folding) INT rather than the new end of the expression. Reported by: Samuel Thibault (on yasm-devel@) svn path=/trunk/yasm/; revision=2123
4 lines
46 B
NASM
4 lines
46 B
NASM
begin
|
|
A equ 09000h
|
|
a dd (A+(end-begin)+3)
|
|
end
|