aboutsummaryrefslogtreecommitdiff
path: root/gcc/lto/lto.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/lto/lto.c')
-rw-r--r--gcc/lto/lto.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/lto/lto.c b/gcc/lto/lto.c
index 8510f6598ba..5474f8817e8 100644
--- a/gcc/lto/lto.c
+++ b/gcc/lto/lto.c
@@ -584,7 +584,7 @@ mentions_vars_p_decl_with_vis (tree t)
return true;
/* Accessor macro has side-effects, use field-name here. */
- CHECK_NO_VAR (t->decl_with_vis.assembler_name);
+ CHECK_NO_VAR (t->u.decl_with_vis.assembler_name);
return false;
}
@@ -644,7 +644,7 @@ mentions_vars_p_type (tree t)
CHECK_VAR (TYPE_MAXVAL (t));
/* Accessor is for derived node types only. */
- CHECK_NO_VAR (t->type_non_common.binfo);
+ CHECK_NO_VAR (t->u.type_non_common.binfo);
CHECK_VAR (TYPE_CONTEXT (t));
CHECK_NO_VAR (TYPE_CANONICAL (t));
@@ -2545,7 +2545,7 @@ lto_fixup_prevailing_decls (tree t)
}
if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
{
- LTO_NO_PREVAIL (t->decl_with_vis.assembler_name);
+ LTO_NO_PREVAIL (t->u.decl_with_vis.assembler_name);
}
if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
{
@@ -2576,7 +2576,7 @@ lto_fixup_prevailing_decls (tree t)
LTO_SET_PREVAIL (TYPE_MINVAL (t));
LTO_SET_PREVAIL (TYPE_MAXVAL (t));
- LTO_NO_PREVAIL (t->type_non_common.binfo);
+ LTO_NO_PREVAIL (t->u.type_non_common.binfo);
LTO_SET_PREVAIL (TYPE_CONTEXT (t));