mirror of
https://github.com/cc65/cc65.git
synced 2025-08-08 22:25:28 +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:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user