From 79ced602d0bd29aba58082ff24a72aaabb74168a Mon Sep 17 00:00:00 2001 From: shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> Date: Mon, 1 Jul 2002 00:43:41 +0000 Subject: [PATCH] 2002-06-30 Devang Patel <dpatel@apple.com> * objc/objc-act.c (finish_file): Avoid finish_objc() if -fsyntax-only. 2002-06-30 Devang Patel <dpatel@apple.com> * objc.dg/fsyntax-only.m: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55125 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/objc/objc-act.c | 5 ++++- gcc/testsuite/ChangeLog | 4 ++++ gcc/testsuite/objc.dg/fsyntax-only.m | 11 +++++++++++ 4 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 gcc/testsuite/objc.dg/fsyntax-only.m diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ce3428bf7dc0..87200bca3c00 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-06-30 Devang Patel <dpatel@apple.com> + + * objc/objc-act.c (finish_file): Avoid finish_objc() if + -fsyntax-only. + Fri Jun 28 17:22:37 2002 Denis Chertykov <denisc@overta.ru> Frank Ch. Eigler <fche@redhat.com> Matthew Green <mrg@redhat.com> diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index c6b9d5ff4ef6..73e30d71881c 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -522,7 +522,10 @@ finish_file () { c_objc_common_finish_file (); - finish_objc (); /* Objective-C finalization */ + /* Finalize Objective-C runtime data. No need to generate tables + and code if only checking syntax. */ + if (!flag_syntax_only) + finish_objc (); if (gen_declaration_file) fclose (gen_declaration_file); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ed5157412987..0dcf1ca48533 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2002-06-30 Devang Patel <dpatel@apple.com> + + * objc.dg/fsyntax-only.m: New test. + 2002-06-27 Mark Mitchell <mark@codesourcery.com> PR c++/6695 diff --git a/gcc/testsuite/objc.dg/fsyntax-only.m b/gcc/testsuite/objc.dg/fsyntax-only.m new file mode 100644 index 000000000000..54a879e22c5b --- /dev/null +++ b/gcc/testsuite/objc.dg/fsyntax-only.m @@ -0,0 +1,11 @@ +/* Test -fsyntax-only compiler option */ +/* { dg-do compile } */ +/* { dg-options "-fsyntax-only" } */ + +@interface foo +-(void) my_method:(int) i with:(int) j; +@end + +@implementation foo +-(void) my_method:(int) i with:(int) j { } +@end -- GitLab