1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 06:28:57 +00:00

New flag bit that tells if a scope has a label.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5131 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-08-07 18:47:21 +00:00
parent af8fbf8d62
commit 49b66ebd2b

View File

@ -51,6 +51,14 @@
#define SCOPE_HAS_SIZE(x) (((x) & SCOPE_MASK_SIZE) == SCOPE_SIZE)
/* Does the scope has a label? */
#define SCOPE_UNLABELED 0x00U /* Scope has no label */
#define SCOPE_LABELED 0x02U /* Scope has a label */
#define SCOPE_MASK_LABEL 0x02U /* Label size */
#define SCOPE_HAS_LABEL(x) (((x) & SCOPE_MASK_LABEL) == SCOPE_LABELED)
/* Scope types */
enum {