diff options
Diffstat (limited to 'gcc/tree-pretty-print.c')
-rw-r--r-- | gcc/tree-pretty-print.c | 6 |
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<<"; |