diff options
Diffstat (limited to 'gcc/objc/objc-act.c')
-rw-r--r-- | gcc/objc/objc-act.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index c1ce2e7..92eaa63 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -3045,13 +3045,14 @@ objc_generate_write_barrier (tree lhs, enum tree_code modifycode, tree rhs) return result; } -static GTY ((param_is (union tree_node))) htab_t interface_htab; - -struct interface_tuple { +struct interface_tuple GTY(()) +{ tree id; tree class_name; }; +static GTY ((param_is (struct interface_tuple))) htab_t interface_htab; + static hashval_t hash_interface (const void *p) { |