merge from gcc

This commit is contained in:
DJ Delorie
2009-04-22 19:09:13 +00:00
parent 08825b6edc
commit 96baa3e74a
2 changed files with 3 additions and 6 deletions

View File

@ -86,8 +86,7 @@ typedef void *(*splay_tree_allocate_fn) (int, void *);
typedef void (*splay_tree_deallocate_fn) (void *, void *);
/* The nodes in the splay tree. */
struct splay_tree_node_s GTY(())
{
struct GTY(()) splay_tree_node_s {
/* The key. */
splay_tree_key GTY ((use_param1)) key;
@ -100,8 +99,7 @@ struct splay_tree_node_s GTY(())
};
/* The splay tree itself. */
struct splay_tree_s GTY(())
{
struct GTY(()) splay_tree_s {
/* The root of the tree. */
splay_tree_node GTY ((use_params)) root;