summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2019-09-12 20:26:23 -0400
committerH. Peter Anvin <hpa@zytor.com>2019-09-12 20:26:23 -0400
commit7ad25b2e1828a4569812f3296473f7a3bc7cd941 (patch)
tree2588114d21407401b7e57092469edec92ed91f20 /include
parent90b1ccff86d530b140eb391ede3c50e33bcf9410 (diff)
downloadnasm-7ad25b2e1828a4569812f3296473f7a3bc7cd941.tar.gz
Change LBL_NONE to LBL_none
NASM convention is to use all-upper-case for "real" information, and mixed-case (upper case common prefix, lower case description) for meta-information. This is a highly useful distinction. Thus "LBL_NONE" implies an actual label of type "NONE", as opposed to no label at all. Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
Diffstat (limited to 'include')
-rw-r--r--include/labels.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/labels.h b/include/labels.h
index 32df8071..a825d1ff 100644
--- a/include/labels.h
+++ b/include/labels.h
@@ -48,7 +48,7 @@ enum mangle_index {
};
enum label_type {
- LBL_NONE = -1, /* No label */
+ LBL_none = -1, /* No label */
LBL_LOCAL = 0, /* Must be zero */
LBL_STATIC,
LBL_GLOBAL,