[Nasm-bugs] [Bug 3392444] New: double times silently uses only the last one's number

no-reply at bugzilla-nasm.gorcunov.org no-reply at bugzilla-nasm.gorcunov.org
Wed Oct 18 07:05:51 PDT 2017


https://bugzilla.nasm.us/show_bug.cgi?id=3392444

            Bug ID: 3392444
           Summary: double times silently uses only the last one's number
           Product: NASM
           Version: 2.13.xx
          Hardware: All
                OS: All
            Status: OPEN
          Severity: normal
          Priority: Medium
         Component: Assembler
          Assignee: nobody at nasm.us
          Reporter: pushbx at 38.de
                CC: gorcunov at gmail.com, hpa at zytor.com, nasm-bugs at nasm.us
     Obtained from: Binary from nasm.us

$ nasm -v
NASM version 2.13.02rc2 compiled on Sep 27 2017
$ cat test.asm 
org 0
times 4 times 16 db 0
%assign num $-$$
%warning num bytes used
db 0
$ nasm test.asm -l test.lst
test.asm:4: warning: 16 bytes used [-w+user]
$ cat test.lst
     1                                  org 0
     2 00000000 00<rept>                times 4 times 16 db 0
     3                                  %assign num $-$$
     4                                  %warning num bytes used
     4          ******************       warning: 16 bytes used [-w+user]
     5 00000010 00                      db 0
$ 

Expected: The doubled times should multiply its numbers.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.


More information about the Nasm-bugs mailing list