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
This commit is contained in:
parent
a70261eec1
commit
c465d914bb
@ -1,3 +1,9 @@
|
|||||||
|
Mon Sep 27 23:20:29 1999 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
|
* tree.h (struct tree_decl): Use `bclass', not `class', in name of
|
||||||
|
field.
|
||||||
|
(DECL_BUILT_IN_CLASS): Adjust accordingly.
|
||||||
|
|
||||||
Mon Sep 27 23:03:16 1999 Richard Henderson <rth@cygnus.com>
|
Mon Sep 27 23:03:16 1999 Richard Henderson <rth@cygnus.com>
|
||||||
|
|
||||||
* ggc-page.c (GGC_MIN_LAST_ALLOCATED): New.
|
* ggc-page.c (GGC_MIN_LAST_ALLOCATED): New.
|
||||||
@ -26,6 +32,12 @@ Mon Sep 27 10:28:48 1999 Andreas Schwab <schwab@suse.de>
|
|||||||
to decide whether to save/restore pic register.
|
to decide whether to save/restore pic register.
|
||||||
(legitimize_pic_address): Don't modify regs_ever_live any more.
|
(legitimize_pic_address): Don't modify regs_ever_live any more.
|
||||||
|
|
||||||
|
Sun Sep 26 10:55:36 1999 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
|
* function.h (struct function): Add x_dont_save_pending_sizes_p.
|
||||||
|
* stor-layout.c (variable_size): Don't add sizes to the pending
|
||||||
|
sizes list if x_dont_save_pending_sizes_p is set.
|
||||||
|
|
||||||
Sun Sep 26 16:36:52 1999 Robert Lipe (robertlipe@usa.net)
|
Sun Sep 26 16:36:52 1999 Robert Lipe (robertlipe@usa.net)
|
||||||
|
|
||||||
* config/i386/dgux.h (SELECT_RTX_SECTION): Provide dummy argument
|
* config/i386/dgux.h (SELECT_RTX_SECTION): Provide dummy argument
|
||||||
|
@ -1253,7 +1253,7 @@ struct tree_type
|
|||||||
/* In a FUNCTION_DECL, nonzero means a built in function. */
|
/* In a FUNCTION_DECL, nonzero means a built in function. */
|
||||||
#define DECL_BUILT_IN(NODE) (DECL_BUILT_IN_CLASS (NODE) != NOT_BUILT_IN)
|
#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. */
|
/* 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,
|
/* In a VAR_DECL that's static,
|
||||||
nonzero if the space is in the text section. */
|
nonzero if the space is in the text section. */
|
||||||
@ -1385,7 +1385,7 @@ struct tree_decl
|
|||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
unsigned int code:24;
|
unsigned int code:24;
|
||||||
unsigned int class:8;
|
unsigned int bclass:8;
|
||||||
} f;
|
} f;
|
||||||
} frame_size;
|
} frame_size;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user