diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-28 06:18:11 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-28 06:18:11 +0000 |
commit | d8db5d1c6a8477b7fc46cba3448a9b02943003f3 (patch) | |
tree | 5e9e99c115d8cd944999eaef7f1ae871428f9bcf /gcc/tree.h | |
parent | 8171e6757ac8792ad21c9e51bd572c50440463ee (diff) | |
download | gcc-d8db5d1c6a8477b7fc46cba3448a9b02943003f3.tar.gz |
* tree.h (struct tree_decl): Use `bclass', not `class', in name of
field.
(DECL_BUILT_IN_CLASS): Adjust accordingly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29686 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index e61f829323e..f2b6c729a10 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -1253,7 +1253,7 @@ struct tree_type /* In a FUNCTION_DECL, nonzero means a built in function. */ #define DECL_BUILT_IN(NODE) (DECL_BUILT_IN_CLASS (NODE) != NOT_BUILT_IN) /* For a builtin function, identify which part of the compiler defined it. */ -#define DECL_BUILT_IN_CLASS(NODE) (DECL_CHECK (NODE)->decl.frame_size.f.class) +#define DECL_BUILT_IN_CLASS(NODE) (DECL_CHECK (NODE)->decl.frame_size.f.bclass) /* In a VAR_DECL that's static, nonzero if the space is in the text section. */ @@ -1385,7 +1385,7 @@ struct tree_decl struct { unsigned int code:24; - unsigned int class:8; + unsigned int bclass:8; } f; } frame_size; |