Commit de3d4fc2 by Richard Guenther Committed by Richard Biener

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
parent c378afbb
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
......
......@@ -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<<";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment