Commit 69c89953 by Raja R Harinath Committed by Jeff Law

dbxout.c (dbxout_symbol, [...]): Use DECL_CONTEXT, not DECL_FIELD_CONTEXT.

        * dbxout.c (dbxout_symbol, case RESULT_DECL, VAR_DECL): Use
        DECL_CONTEXT, not DECL_FIELD_CONTEXT.

From-SVN: r34776
parent 3be6ce46
Wed Jun 28 21:09:33 2000 Raja R Harinath <harinath@cs.umn.edu>
* dbxout.c (dbxout_symbol, case RESULT_DECL, VAR_DECL): Use
DECL_CONTEXT, not DECL_FIELD_CONTEXT.
2000-06-29 Michael Hayes <m.hayes@elec.canterbury.ac.nz> 2000-06-29 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
* flow.c (flow_depth_first_order_compute): Fix algorithm. * flow.c (flow_depth_first_order_compute): Fix algorithm.
......
...@@ -1941,8 +1941,8 @@ dbxout_symbol (decl, local) ...@@ -1941,8 +1941,8 @@ dbxout_symbol (decl, local)
&& DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != 0
&& host_integerp (DECL_INITIAL (decl), 0) && host_integerp (DECL_INITIAL (decl), 0)
&& ! TREE_ASM_WRITTEN (decl) && ! TREE_ASM_WRITTEN (decl)
&& (DECL_FIELD_CONTEXT (decl) == NULL_TREE && (DECL_CONTEXT (decl) == NULL_TREE
|| TREE_CODE (DECL_FIELD_CONTEXT (decl)) == BLOCK)) || TREE_CODE (DECL_CONTEXT (decl)) == BLOCK))
{ {
if (TREE_PUBLIC (decl) == 0) if (TREE_PUBLIC (decl) == 0)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment