summaryrefslogtreecommitdiff
path: root/include/hashtab.h
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2004-03-30 20:03:09 +0000
committerDJ Delorie <dj@delorie.com>2004-03-30 20:03:09 +0000
commita8ddff12c0ab0589e6b9a3a5ee6a0da65a2d474f (patch)
treebda89c53fd718f7d1428bab8a69c4573135288e2 /include/hashtab.h
parent994093090f4e48d94e6d2c6159b91f3c42b55fca (diff)
downloadgdb-a8ddff12c0ab0589e6b9a3a5ee6a0da65a2d474f.tar.gz
merge from gcc
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;
};