merge from gcc
This commit is contained in:
parent
08825b6edc
commit
96baa3e74a
@ -96,8 +96,7 @@ typedef void (*htab_free_with_arg) (void *, void *);
|
|||||||
functions mentioned below. The size of this structure is subject to
|
functions mentioned below. The size of this structure is subject to
|
||||||
change. */
|
change. */
|
||||||
|
|
||||||
struct htab GTY(())
|
struct GTY(()) htab {
|
||||||
{
|
|
||||||
/* Pointer to hash function. */
|
/* Pointer to hash function. */
|
||||||
htab_hash hash_f;
|
htab_hash hash_f;
|
||||||
|
|
||||||
|
@ -86,8 +86,7 @@ typedef void *(*splay_tree_allocate_fn) (int, void *);
|
|||||||
typedef void (*splay_tree_deallocate_fn) (void *, void *);
|
typedef void (*splay_tree_deallocate_fn) (void *, void *);
|
||||||
|
|
||||||
/* The nodes in the splay tree. */
|
/* The nodes in the splay tree. */
|
||||||
struct splay_tree_node_s GTY(())
|
struct GTY(()) splay_tree_node_s {
|
||||||
{
|
|
||||||
/* The key. */
|
/* The key. */
|
||||||
splay_tree_key GTY ((use_param1)) key;
|
splay_tree_key GTY ((use_param1)) key;
|
||||||
|
|
||||||
@ -100,8 +99,7 @@ struct splay_tree_node_s GTY(())
|
|||||||
};
|
};
|
||||||
|
|
||||||
/* The splay tree itself. */
|
/* The splay tree itself. */
|
||||||
struct splay_tree_s GTY(())
|
struct GTY(()) splay_tree_s {
|
||||||
{
|
|
||||||
/* The root of the tree. */
|
/* The root of the tree. */
|
||||||
splay_tree_node GTY ((use_params)) root;
|
splay_tree_node GTY ((use_params)) root;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user