aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/tree-pretty-print.c6
2 files changed, 11 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 44052d0..e8ff571 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-02 Richard Guenther <rguenther@suse.de>
+
+ * tree-pretty-print.c (op_symbol): Handle LROTATE_EXPR
+ and RROTATE_EXPR.
+
2005-12-02 Alan Modra <amodra@bigpond.net.au>
PR target/21017
diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c
index 6fa0326..354a25a 100644
--- a/gcc/tree-pretty-print.c
+++ b/gcc/tree-pretty-print.c
@@ -1924,6 +1924,12 @@ op_symbol (tree op)
case RSHIFT_EXPR:
return ">>";
+ case LROTATE_EXPR:
+ return "r<<";
+
+ case RROTATE_EXPR:
+ return "r>>";
+
case VEC_LSHIFT_EXPR:
return "v<<";