]> git.sur5r.net Git - cc65/blobdiff - src/common/lidefs.h
Mark the symbol that is the name of a scope with the size of that scope
[cc65] / src / common / lidefs.h
index ac45dd23435697de24f285fb9e7520c4f18a070d..1a85dba5d267fc0463310db795d6e299aa7e5217 100644 (file)
@@ -48,6 +48,7 @@
 #define LI_TYPE_ASM             0U      /* Normal assembler source */
 #define LI_TYPE_EXT             1U      /* Externally supplied line info */
 #define LI_TYPE_MACRO           2U      /* Macro expansion */
+#define LI_TYPE_MACPARAM        3U      /* Macro parameter expansion */
 
 /* Make a combined value from type and count */
 #define LI_MAKE_TYPE(T,C)       ((T) | (((unsigned)(C)) << 2U))