diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-12-08 06:39:00 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-12-08 06:39:00 +0000 |
commit | ac1b13f457ad72970d58b53ef88b45ddab522d41 (patch) | |
tree | b3753723eec1f756b6a00d572ba8b10d57776fb3 /gcc/c-common.c | |
parent | 7fd64ba3723e2217309315b2399ae13b247574df (diff) | |
download | gcc-ac1b13f457ad72970d58b53ef88b45ddab522d41.zip gcc-ac1b13f457ad72970d58b53ef88b45ddab522d41.tar.gz gcc-ac1b13f457ad72970d58b53ef88b45ddab522d41.tar.bz2 |
c-common.c (verify_tree): Don't check code length if we know we are handling tcc_unary.
* c-common.c (verify_tree): Don't check code length if we know
we are handling tcc_unary.
* print_tree.c (print_node): Remove code to handle RTL
appearing as a part of a tree node.
* tree-gimple.c (recalculate_side_effects): Rename fro as len.
* tree.c (build1_stat): Don't check TREE_CODE_LENGTH.
(PROCESS_ARG): Don't refer to fro.
(build2_stat, build3_stat, build4_stat): Don't compute fro.
From-SVN: r91855
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 627911d..a6f303b 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -1365,8 +1365,6 @@ verify_tree (tree x, struct tlist **pbefore_sp, struct tlist **pno_sp, Other non-expressions need not be processed. */ if (cl == tcc_unary) { - if (TREE_CODE_LENGTH (code) == 0) - return; x = TREE_OPERAND (x, 0); writer = 0; goto restart; |