diff options
author | Mark Mitchell <mark@codesourcery.com> | 1999-09-28 06:18:11 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-09-28 06:18:11 +0000 |
commit | c465d914bb45c13fc5aef3b6da32c1503ea99454 (patch) | |
tree | 5e9e99c115d8cd944999eaef7f1ae871428f9bcf /gcc/tree.h | |
parent | a70261eec1b9b6f3a985e84763d465ceaf387175 (diff) | |
download | gcc-c465d914bb45c13fc5aef3b6da32c1503ea99454.zip gcc-c465d914bb45c13fc5aef3b6da32c1503ea99454.tar.gz gcc-c465d914bb45c13fc5aef3b6da32c1503ea99454.tar.bz2 |
tree.h (struct tree_decl): Use `bclass', not `class', in name of field.
* tree.h (struct tree_decl): Use `bclass', not `class', in name of
field.
(DECL_BUILT_IN_CLASS): Adjust accordingly.
From-SVN: r29686
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |