]> git.sur5r.net Git - cc65/blobdiff - src/cc65/codeseg.c
Working on the new backend
[cc65] / src / cc65 / codeseg.c
index b67585d4e9ba33e384cd611550704b167c859821..aed667b854b0d3c184670ba50666fee82b0f2c2d 100644 (file)
@@ -297,11 +297,7 @@ static CodeEntry* ParseInsn (CodeSeg* S, const char* L)
     /* We do now have the addressing mode in AM. Allocate a new CodeEntry
      * structure and initialize it.
      */
-    E = NewCodeEntry (OPC, AM, Label);
-    if (Arg[0] != '\0') {
-       /* We have an additional expression */
-       E->Arg = xstrdup (Arg);
-    }
+    E = NewCodeEntry (OPC, AM, Arg, Label);
 
     /* Return the new code entry */
     return E;