Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2004-03-31 00:03:09 +0400
committerDJ Delorie <dj@redhat.com>2004-03-31 00:03:09 +0400
commite9db9325428cd78d3af6a01a14257e97b5d0920d (patch)
treef9225bbcc01e7c7bbe243e1b40557a5dc92c7e44 /include/hashtab.h
parent7c1bb55ec0fb00fe4b8bbf8633c75fec9179f116 (diff)
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 f7bd4ae69..1af7368d3 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;
};