A2323: Label is ignored

[DISABLE, INFORMATION, WARNING, ERROR]

Description

A label is specified in front of a directive, which does not accept any label. The macro assembler ignores such label. These labels cannot not be referenced anywhere else in the application. Labels will be ignored in front of following directives: ELSE, ENDIF, END, ENDM, INCLUDE, CLIST, ALIST, FAIL, LIST, MEXIT, NOLIST, NOL, OFFSET, ORG, NOPAGE, PAGE, LLEN, PLEN, SPC, TABS, TITLE, TTL.

Example
  CodeSec: SECTION

           ; ...

  label:   PLEN 50

           ; ...

  label2:  LIST

           ; ...
  
Tips

Remove the label which is not required. If you need a label at that position in a section, define the label on a separate line.

Example
  CodeSec: SECTION

           ; ...

  label:

           PLEN 50

           ; ...

  label2:

           LIST

           ; ...