diff options
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/objc-act.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index c23c622..b9ac315 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -5298,8 +5298,8 @@ build_protocol_reference (p) objc_protocol_template), NULL_TREE)); - if (IDENTIFIER_GLOBAL_VALUE (ident)) - decl = IDENTIFIER_GLOBAL_VALUE (ident); /* Set by pushdecl. */ + if (identifier_global_value (ident)) + decl = identifier_global_value (ident); /* Set by pushdecl. */ else { decl = build_decl (VAR_DECL, ident, ptype); |