diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-08 06:39:00 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-08 06:39:00 +0000 |
commit | 4161c18d5dce70769fda45af9e029554daf14080 (patch) | |
tree | b3753723eec1f756b6a00d572ba8b10d57776fb3 /gcc/c-common.c | |
parent | 0968d8a0dacbef800dd8f9bae54c9ad1e5afa44a (diff) | |
download | gcc-4161c18d5dce70769fda45af9e029554daf14080.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91855 138bc75d-0d04-0410-961f-82ee72b054a4
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 627911d4b68..a6f303b814e 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; |