diff options
author | DJ Delorie <dj@redhat.com> | 2009-04-22 19:09:13 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2009-04-22 19:09:13 +0000 |
commit | 96baa3e74ab8bacb3ba3caa6863dfcc01e542883 (patch) | |
tree | 7433b33d2149a4ea7c7aef64ffadd910e6b08bcf | |
parent | 08825b6edc43d6eb5d6b06bb3d0af3192d1d13f2 (diff) | |
download | cygnal-96baa3e74ab8bacb3ba3caa6863dfcc01e542883.tar.gz cygnal-96baa3e74ab8bacb3ba3caa6863dfcc01e542883.tar.bz2 cygnal-96baa3e74ab8bacb3ba3caa6863dfcc01e542883.zip |
merge from gcc
-rw-r--r-- | include/hashtab.h | 3 | ||||
-rw-r--r-- | include/splay-tree.h | 6 |
2 files changed, 3 insertions, 6 deletions
diff --git a/include/hashtab.h b/include/hashtab.h index 77eee14e9..4f67448a9 100644 --- a/include/hashtab.h +++ b/include/hashtab.h @@ -96,8 +96,7 @@ typedef void (*htab_free_with_arg) (void *, void *); functions mentioned below. The size of this structure is subject to change. */ -struct htab GTY(()) -{ +struct GTY(()) htab { /* Pointer to hash function. */ htab_hash hash_f; diff --git a/include/splay-tree.h b/include/splay-tree.h index b03c581e0..8f236e09c 100644 --- a/include/splay-tree.h +++ b/include/splay-tree.h @@ -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; |