tree-pretty-print.c (op_symbol): Handle LROTATE_EXPR and RROTATE_EXPR.

2005-12-02  Richard Guenther  <rguenther@suse.de>

	* tree-pretty-print.c (op_symbol): Handle LROTATE_EXPR
	and RROTATE_EXPR.

From-SVN: r107880
This commit is contained in:
Richard Guenther 2005-12-02 09:37:03 +00:00 committed by Richard Biener
parent c378afbb0d
commit de3d4fc2da
2 changed files with 11 additions and 0 deletions

View File

@ -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

View File

@ -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<<";