From: cuz Date: Sat, 13 Dec 2003 19:54:38 +0000 (+0000) Subject: Include exported symbols in debug info X-Git-Tag: V2.12.0~1057 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1b2c277f8bde85f4429c718a64ccf1e55f7a9a2a;p=cc65 Include exported symbols in debug info git-svn-id: svn://svn.cc65.org/cc65/trunk@2747 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/ca65/symtab.c b/src/ca65/symtab.c index 32c549e7a..46b6468ed 100644 --- a/src/ca65/symtab.c +++ b/src/ca65/symtab.c @@ -65,7 +65,7 @@ /* Combined symbol entry flags used within this module */ #define SF_UNDEFMASK (SF_REFERENCED | SF_DEFINED | SF_IMPORT) #define SF_UNDEFVAL (SF_REFERENCED) -#define SF_DBGINFOMASK (SF_UNUSED | SF_DEFINED | SF_EXPORT | SF_IMPORT) +#define SF_DBGINFOMASK (SF_UNUSED | SF_DEFINED | SF_IMPORT) #define SF_DBGINFOVAL (SF_DEFINED) /* Symbol tables */