diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-10-29 14:05:43 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-10-29 14:05:43 +0000 |
commit | c24a4dcffae67ad72dbf83ee872abe34acaa725e (patch) | |
tree | f850779f7e0847588424ea3a7b14bd3e933cc19d /gcc/tree.h | |
parent | fe94b6534a05d437259a17ba37e3fa50f649fe84 (diff) | |
download | gcc-c24a4dcffae67ad72dbf83ee872abe34acaa725e.tar.gz |
tree-phinodes.c (make_phi_node, [...]): Don't zero the whole PHI node.
* tree-phinodes.c (make_phi_node, resize_phi_node): Don't zero
the whole PHI node.
* tree.h (tree_phi_node): Tell the garbage collector to chase
num_args arguments.
From-SVN: r89844
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index 9f74ef9cd98..001c967178e 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -1405,7 +1405,7 @@ struct tree_phi_node GTY(()) /* Dataflow information. */ struct dataflow_d *df; - struct phi_arg_d GTY ((length ("((tree)&%h)->phi.capacity"))) a[1]; + struct phi_arg_d GTY ((length ("((tree)&%h)->phi.num_args"))) a[1]; }; |