diff options
author | Ziemowit Laski <zlaski@apple.com> | 2001-10-12 16:01:16 +0000 |
---|---|---|
committer | Stan Shebs <shebs@gcc.gnu.org> | 2001-10-12 16:01:16 +0000 |
commit | 7e21622e0e580b065224125cc6085b9f0559293a (patch) | |
tree | 990d6b637b2a9107c249e838916b5542d8aa25b8 /gcc | |
parent | 592696ddc8e140af2382c4922c43ef0c1eac1050 (diff) | |
download | gcc-7e21622e0e580b065224125cc6085b9f0559293a.zip gcc-7e21622e0e580b065224125cc6085b9f0559293a.tar.gz gcc-7e21622e0e580b065224125cc6085b9f0559293a.tar.bz2 |
objc-act.c (finish_objc): Correct precondition for emitting symtab declarations.
2001-10-12 Ziemowit Laski <zlaski@apple.com>
* objc/objc-act.c (finish_objc): Correct precondition for emitting
symtab declarations.
From-SVN: r46232
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/objc/objc-act.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0feb6a7..3e35208 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-10-12 Ziemowit Laski <zlaski@apple.com> + + * objc/objc-act.c (finish_objc): Correct precondition for emitting + symtab declarations. + 2001-10-12 Stan Shebs <shebs@apple.com> * config/rs6000/rs6000.c: Remove uses of "register" specifier in diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index c1e99d0..9da8ba0 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -8095,7 +8095,7 @@ finish_objc () if (objc_static_instances) generate_static_references (); - if (objc_implementation_context || class_names_chain + if (imp_list || class_names_chain || meth_var_names_chain || meth_var_types_chain || sel_ref_chain) generate_objc_symtab_decl (); |