From b25de3754ddfa29d54c6641224cf73788d9098d2 Mon Sep 17 00:00:00 2001 From: rth Date: Mon, 28 Jun 2004 22:26:24 +0000 Subject: * tree.def (REALPART_EXPR, IMAGPART_EXPR): Change class to 'r'. * fold-const.c (operand_equal_p ): Add REALPART_EXPR, IMAGPART_EXPR. * tree-dump.c (dequeue_and_dump): Handle REALPART_EXPR and IMAGPART_EXPR explicitly. * tree-inline.c (estimate_num_insns_1): Don't handle REALPART_EXPR and IMAGPART_EXPR specially. * tree.c (build1_stat): Copy TREE_THIS_VOLATILE into class 'r'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83825 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/tree.def | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/tree.def') diff --git a/gcc/tree.def b/gcc/tree.def index 422817d3215..d1268953690 100644 --- a/gcc/tree.def +++ b/gcc/tree.def @@ -776,8 +776,8 @@ DEFTREECODE (CONJ_EXPR, "conj_expr", '1', 1) /* Used only on an operand of complex type, these return a value of the corresponding component type. */ -DEFTREECODE (REALPART_EXPR, "realpart_expr", '1', 1) -DEFTREECODE (IMAGPART_EXPR, "imagpart_expr", '1', 1) +DEFTREECODE (REALPART_EXPR, "realpart_expr", 'r', 1) +DEFTREECODE (IMAGPART_EXPR, "imagpart_expr", 'r', 1) /* Nodes for ++ and -- in C. The second arg is how much to increment or decrement by. -- cgit v1.2.1