From acdd229ef5f8879279286108dc423f8d0cbe7231 Mon Sep 17 00:00:00 2001 From: sandeep Date: Sun, 22 Apr 2001 20:52:29 +0000 Subject: [PATCH] some enhancement git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@753 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/SDCCsymt.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/SDCCsymt.h b/src/SDCCsymt.h index c18f3359..31f2c88e 100644 --- a/src/SDCCsymt.h +++ b/src/SDCCsymt.h @@ -88,6 +88,15 @@ typedef enum } STORAGE_CLASS; +#define TF_LONG 0x00000001 /* type long int */ +#define TF_SHORT 0x00000002 /* type short */ +#define TF_UNSIGNED 0x00000004 /* type is unsigned */ +#define TF_STATIC 0x00000008 /* type is static */ +#define TF_EXTERN 0x00000010 /* type is extern */ +#define TF_ABSADDR 0x00000020 /* type has absolute address */ +#define TF_REENT 0x00000040 /* type of func is reentrant func */ +#define TF_INTRRNT 0x00000080 /* is an interrupt routine */ + /* specifier is the last in the type-chain */ typedef struct specifier { -- 2.30.2