[Nasm-bugs] [Bug 3392732] New: git nasm: %strcat rejects comma-separated string inputs

noreply-nasm at dev.nasm.us noreply-nasm at dev.nasm.us
Sun Dec 27 16:27:58 PST 2020


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

            Bug ID: 3392732
           Summary: git nasm: %strcat rejects comma-separated string
                    inputs
           Product: NASM
           Version: 2.16 (development)
          Hardware: All
                OS: All
            Status: OPEN
          Severity: blocker
          Priority: Medium
         Component: Assembler
          Assignee: nobody at nasm.us
          Reporter: pushbx at ulukai.org
                CC: chang.seok.bae at intel.com, gorcunov at gmail.com,
                    hpa at zytor.com, nasm-bugs at nasm.us
     Obtained from: Built from git using configure

The nasm binary is as just built on a Debian 9 server from
nasm-2.15.05-113-gdc4a6194. This bug breaks my sources severely.

$ nasm -v
NASM version 2.16rc0 compiled on Dec 28 2020
$ cat test1.asm
%strcat foo "bar","baz"
%warning foo
$ nasm test1.asm
test1.asm:1: error: non-string passed to `%strcat': ,
$ cat test2.asm
%strcat foo "bar" "baz"
%warning foo
$ nasm test2.asm
test2.asm:2: warning: barbaz [-w+user]
$ oldnasm -v
NASM version 2.14.03rc2 compiled on Aug 31 2019
$ oldnasm test1.asm
test1.asm:2: warning: barbaz [-w+user]
$ oldnasm test2.asm
test2.asm:2: warning: barbaz [-w+user]
$

-- 
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