diff options
author | merrill <merrill@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-01-14 01:09:01 +0000 |
---|---|---|
committer | merrill <merrill@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-01-14 01:09:01 +0000 |
commit | aa5ec236cf31ff5a76ef0440a181a8036a849017 (patch) | |
tree | 9af815a0feebeea5b32fc5a358886913ab5dd30e /gcc/c-parse.in | |
parent | f377226ecebe6b5c95b73996ae121bc78c8bff01 (diff) | |
download | gcc-aa5ec236cf31ff5a76ef0440a181a8036a849017.tar.gz |
__attribute__ ((constructor))
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8747 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-parse.in')
-rw-r--r-- | gcc/c-parse.in | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gcc/c-parse.in b/gcc/c-parse.in index fc1bab613fa..0862d30a065 100644 --- a/gcc/c-parse.in +++ b/gcc/c-parse.in @@ -258,9 +258,7 @@ extern void yyprint (); program: /* empty */ { if (pedantic) pedwarn ("ANSI C forbids an empty source file"); -ifobjc - objc_finish (); -end ifobjc + finish_file (); } | extdefs { @@ -268,9 +266,7 @@ end ifobjc get us back to the global binding level. */ while (! global_bindings_p ()) poplevel (0, 0, 0); -ifobjc - objc_finish (); -end ifobjc + finish_file (); } ; |