diff options
Diffstat (limited to 'gcc/tree-core.h')
-rw-r--r-- | gcc/tree-core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-core.h b/gcc/tree-core.h index 64d1fe4dd8d..1883fd7234f 100644 --- a/gcc/tree-core.h +++ b/gcc/tree-core.h @@ -1250,7 +1250,7 @@ struct GTY(()) ssa_use_operand_t { needs to point to the original SSA name. Since statements and SSA names are of different data types, we need this union. See the explanation in struct imm_use_iterator. */ - union { gimple stmt; tree ssa_name; } GTY((skip(""))) loc; + union { gimple *stmt; tree ssa_name; } GTY((skip(""))) loc; tree *GTY((skip(""))) use; }; @@ -1261,7 +1261,7 @@ struct GTY(()) tree_ssa_name { tree var; /* Statement that defines this SSA name. */ - gimple def_stmt; + gimple *def_stmt; /* Value range information. */ union ssa_name_info_type { |