diff options
author | Jason Merrill <merrill@gnu.org> | 1995-01-14 01:09:01 +0000 |
---|---|---|
committer | Jason Merrill <merrill@gnu.org> | 1995-01-14 01:09:01 +0000 |
commit | 2c5f4139a91db294f1ab34da9bbae585d8c65eb2 (patch) | |
tree | 9af815a0feebeea5b32fc5a358886913ab5dd30e /gcc/objc | |
parent | 34cd1bd74c2afe5a0e14182e7275836d91ed462d (diff) | |
download | gcc-2c5f4139a91db294f1ab34da9bbae585d8c65eb2.zip gcc-2c5f4139a91db294f1ab34da9bbae585d8c65eb2.tar.gz gcc-2c5f4139a91db294f1ab34da9bbae585d8c65eb2.tar.bz2 |
__attribute__ ((constructor))
From-SVN: r8747
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/objc-act.c | 2 | ||||
-rw-r--r-- | gcc/objc/objc-act.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 937384d..96be32f 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -537,7 +537,7 @@ objc_fatal () } void -objc_finish () +finish_file () { if (doing_objc_thang) finish_objc (); /* Objective-C finalization */ diff --git a/gcc/objc/objc-act.h b/gcc/objc/objc-act.h index e6765d9..1a88fca 100644 --- a/gcc/objc/objc-act.h +++ b/gcc/objc/objc-act.h @@ -22,7 +22,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* used by yyparse */ -void objc_finish PROTO((void)); +void finish_file PROTO((void)); tree start_class PROTO((enum tree_code, tree, tree, tree)); tree continue_class PROTO((tree)); void finish_class PROTO((tree)); |