From b92ef8fdac30b25e1a7c2e2b55c8b2192e211edf Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Thu, 17 Jul 2003 20:25:21 +0000 Subject: [PATCH] Missed this hunk - belongs with the previous patch From-SVN: r69521 --- gcc/objc/objc-act.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 3f451b0f5992..c682850fc121 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -3470,8 +3470,9 @@ synth_forward_declarations () UOBJC_CLASS_decl = define_decl (an_id, decl_specs); TREE_USED (UOBJC_CLASS_decl) = 1; DECL_ARTIFICIAL (UOBJC_CLASS_decl) = 1; + TREE_PUBLIC (UOBJC_CLASS_decl) = 0; - /* extern struct objc_class _OBJC_METACLASS_; */ + /* static struct objc_class _OBJC_METACLASS_; */ an_id = synth_id_with_class_suffix ("_OBJC_METACLASS", objc_implementation_context);