* encoding.c (TYPE_MODE): Define.

From-SVN: r40633
This commit is contained in:
David Edelsohn 2001-03-19 21:05:03 +00:00 committed by David Edelsohn
parent 77af5c469c
commit 120d59bfb9
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2001-03-19 David Edelsohn <edelsohn@gnu.org>
* encoding.c (TYPE_MODE): Define.
2001-03-14 Nicola Pero <n.pero@mi.flashnet.it> 2001-03-14 Nicola Pero <n.pero@mi.flashnet.it>
* thr.c (objc_thread_add): New function. * thr.c (objc_thread_add): New function.

View File

@ -46,8 +46,8 @@ Boston, MA 02111-1307, USA. */
/* Various hacks for objc_layout_record. These are used by the target /* Various hacks for objc_layout_record. These are used by the target
macros. */ macros. */
#define TREE_CODE(TYPE) *TYPE #define TREE_CODE(TYPE) *(TYPE)
#define TREE_TYPE(TREE) TREE #define TREE_TYPE(TREE) (TREE)
#define RECORD_TYPE _C_STRUCT_B #define RECORD_TYPE _C_STRUCT_B
#define UNION_TYPE _C_UNION_B #define UNION_TYPE _C_UNION_B
@ -56,7 +56,8 @@ Boston, MA 02111-1307, USA. */
#define TYPE_FIELDS(TYPE) objc_skip_typespec (TYPE) #define TYPE_FIELDS(TYPE) objc_skip_typespec (TYPE)
#define DECL_MODE(TYPE) *(TYPE) #define DECL_MODE(TYPE) *(TYPE)
#define TYPE_MODE(TYPE) *(TYPE)
#define DFmode _C_DBL #define DFmode _C_DBL