summaryrefslogtreecommitdiff
path: root/gcc/tree-pretty-print.c
diff options
context:
space:
mode:
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2005-12-02 09:37:03 +0000
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2005-12-02 09:37:03 +0000
commit01329d30902180db9855dcc9b33baa7b623eaa76 (patch)
tree27e0d2e52ec89c26345ab9511c8674a8388bb519 /gcc/tree-pretty-print.c
parent86926b06b61e7497e682c8cb6941ade417a6648c (diff)
downloadgcc-01329d30902180db9855dcc9b33baa7b623eaa76.tar.gz
2005-12-02 Richard Guenther <rguenther@suse.de>
* tree-pretty-print.c (op_symbol): Handle LROTATE_EXPR and RROTATE_EXPR. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107880 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-pretty-print.c')
-rw-r--r--gcc/tree-pretty-print.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c
index 6fa0326d429..354a25a1818 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<<";