diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-09-17 21:42:55 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-09-17 21:42:55 +0000 |
commit | ec6b51edda86f2ffa64f50bbd30b78125d7a1f78 (patch) | |
tree | 7fabe819327c7f2d722c200fd40771d593760da4 /gcc/tree.def | |
parent | 4cd62850ebaa82a9d88f5999cfdbf470a7fdbdae (diff) | |
download | gcc-ec6b51edda86f2ffa64f50bbd30b78125d7a1f78.tar.gz |
2008-09-17 Richard Guenther <rguenther@suse.de>
* tree-cfg.c (verify_types_in_gimple_assign): Rename to ...
(verify_gimple_assign): ... this. Split into ...
(verify_gimple_assign_unary): ... this,
(verify_gimple_assign_binary): ... that,
(verify_gimple_assign_single): ... and this.
(verify_types_in_gimple_stmt): Call verify_gimple_assign.
Fix GIMPLE_CHANGE_DYNAMIC_TYPE handling.
(verify_types_in_gimple_min_lval): Handle TARGET_MEM_REF.
(verify_types_in_gimple_reference): Be forgiving with
VIEW_CONVERT_EXPRs.
(verify_gimple_phi): Deal with virtual operands.
* tree.def (PREDICT_EXPR): Change to tcc_expression.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@140431 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.def')
-rw-r--r-- | gcc/tree.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.def b/gcc/tree.def index e9c891754bb..ef103cdba50 100644 --- a/gcc/tree.def +++ b/gcc/tree.def @@ -1137,7 +1137,7 @@ DEFTREECODE (VEC_INTERLEAVE_LOW_EXPR, "vec_interleavelow_expr", tcc_binary, 2) outcome (0 for not taken and 1 for taken). Once the profile is guessed all conditional branches leading to execution paths executing the PREDICT_EXPR will get predicted by the specified predictor. */ -DEFTREECODE (PREDICT_EXPR, "predict_expr", tcc_unary, 1) +DEFTREECODE (PREDICT_EXPR, "predict_expr", tcc_expression, 1) /* OPTIMIZATION_NODE. Node to store the optimization options. */ DEFTREECODE (OPTIMIZATION_NODE, "optimization_node", tcc_exceptional, 0) |