diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-28 22:26:24 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-28 22:26:24 +0000 |
commit | b25de3754ddfa29d54c6641224cf73788d9098d2 (patch) | |
tree | a549f060a09c40d71ee82fdca3589a607929d2e1 /gcc/tree.def | |
parent | 3e3c5aa9aea18017c9190b08605c932871ff98a5 (diff) | |
download | gcc-b25de3754ddfa29d54c6641224cf73788d9098d2.tar.gz |
* tree.def (REALPART_EXPR, IMAGPART_EXPR): Change class to 'r'.
* fold-const.c (operand_equal_p <case 'r'>): 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
Diffstat (limited to 'gcc/tree.def')
-rw-r--r-- | gcc/tree.def | 4 |
1 files changed, 2 insertions, 2 deletions
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. |