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:
parent
c378afbb0d
commit
de3d4fc2da
@ -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
|
||||
|
@ -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<<";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user