From cb92c5560b3a8e137449448ed4d29771bdd28632 Mon Sep 17 00:00:00 2001 From: sandeep Date: Tue, 18 Dec 2001 04:24:42 +0000 Subject: [PATCH] added unqualified_pointer, globals_allowed & reset_labelKey to port structure git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1701 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/port.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/port.h b/src/port.h index 88f764ad..507f70f4 100644 --- a/src/port.h +++ b/src/port.h @@ -239,9 +239,11 @@ typedef struct bool eq_nne; /* transform a == b --> ! (a != b) */ bool arrayInitializerSuppported; - bool (*cseOk) (iCode *ic, iCode *pdic); - builtins *builtintable; /* table of builtin functions */ + builtins *builtintable; /* table of builtin functions */ + int unqualified_pointer; /* unqualified pointers type is */ + int reset_labelKey ; /* reset Label no 1 at the start of a function */ + int globals_allowed ; /* global & static locals not allowed ? 0 ONLY TININative*/ #define PORT_MAGIC 0xAC32 /** Used at runtime to detect if this structure has been completly filled in. */ int magic; @@ -274,5 +276,8 @@ extern PORT i186_port; #if !OPT_DISABLE_TLCS900H extern PORT tlcs900h_port; #endif +#if !OPT_DISABLE_TININative +extern PORT tininative_port; +#endif #endif /* PORT_INCLUDE*/ -- 2.47.2