summaryrefslogtreecommitdiff
path: root/include/hashtab.h
diff options
context:
space:
mode:
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2004-03-30 19:23:16 +0000
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2004-03-30 19:23:16 +0000
commit87a9866249f8a78e608369c7b1f30a8b07f8e687 (patch)
treee44731ee130634d2645be6d9a6feda7384576183 /include/hashtab.h
parent7035b2ab9789880dfe54b3d18299b944ef796df6 (diff)
downloadgcc-87a9866249f8a78e608369c7b1f30a8b07f8e687.tar.gz
* hashtab.h, splay-tree.h: Use new shorter form of GTY markers.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80092 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include/hashtab.h')
-rw-r--r--include/hashtab.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hashtab.h b/include/hashtab.h
index f7bd4ae69d3..1af7368d338 100644
--- a/include/hashtab.h
+++ b/include/hashtab.h
@@ -99,7 +99,7 @@ struct htab GTY(())
htab_del del_f;
/* Table itself. */
- PTR * GTY ((use_param (""), length ("%h.size"))) entries;
+ PTR * GTY ((use_param, length ("%h.size"))) entries;
/* Current size (in entries) of the hash table */
size_t size;
@@ -123,7 +123,7 @@ struct htab GTY(())
htab_free free_f;
/* Alternate allocate/free functions, which take an extra argument. */
- PTR GTY((skip (""))) alloc_arg;
+ PTR GTY((skip)) alloc_arg;
htab_alloc_with_arg alloc_with_arg_f;
htab_free_with_arg free_with_arg_f;
};