diff options
author | Andreas Tobler <a.tobler@schweiz.org> | 2006-11-02 20:03:40 +0000 |
---|---|---|
committer | Andreas Tobler <andreast@gcc.gnu.org> | 2006-11-02 21:03:40 +0100 |
commit | 88852cb5127cf6c6a4c165dfb2d935972d203b79 (patch) | |
tree | e9e2cf28859db2b98b8a2e2845641d13a7d2ab66 /gcc/objc | |
parent | 55fc9e87b216e43ae8cc1f2b97c799c41e3f8f09 (diff) | |
download | gcc-88852cb5127cf6c6a4c165dfb2d935972d203b79.zip gcc-88852cb5127cf6c6a4c165dfb2d935972d203b79.tar.gz gcc-88852cb5127cf6c6a4c165dfb2d935972d203b79.tar.bz2 |
objc-act.c (objc_finish_file): Remove ifdef clause for OBJCPLUS and content where we called cp_finish_file.
2006-11-02 Andreas Tobler <a.tobler@schweiz.org>
* objc-act.c (objc_finish_file): Remove ifdef clause for OBJCPLUS and
content where we called cp_finish_file.
From-SVN: r118424
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/objc/objc-act.c | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/gcc/objc/ChangeLog b/gcc/objc/ChangeLog index c0605d0..b3647d99 100644 --- a/gcc/objc/ChangeLog +++ b/gcc/objc/ChangeLog @@ -1,3 +1,8 @@ +2006-11-02 Andreas Tobler <a.tobler@schweiz.org> + + * objc-act.c (objc_finish_file): Remove ifdef clause for OBJCPLUS and + content where we called cp_finish_file. + 2006-10-23 Rafael Avila de Espindola <rafael.espindola@gmail.com> * objc-act.c (synth_module_prologue): Replace calls to diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index ab0f34a..d0c3447 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -550,10 +550,6 @@ objc_finish_file (void) if (gen_declaration_file) fclose (gen_declaration_file); - -#ifdef OBJCPLUS - cp_finish_file (); -#endif } /* Return the first occurrence of a method declaration corresponding |