c-gimplify.c (c_gimplify_expr): Handle [LR]ROTATE_EXPR like [LR]SHIFT_EXPR.
* c-gimplify.c (c_gimplify_expr): Handle [LR]ROTATE_EXPR like [LR]SHIFT_EXPR. From-SVN: r253742
This commit is contained in:
parent
5675a2f8c8
commit
39382c092e
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2017-10-13 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* c-gimplify.c (c_gimplify_expr): Handle [LR]ROTATE_EXPR like
|
||||
[LR]SHIFT_EXPR.
|
||||
|
||||
2017-10-12 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
* c-common.c (enum missing_token_insertion_kind): New enum.
|
||||
|
|
|
@ -229,6 +229,8 @@ c_gimplify_expr (tree *expr_p, gimple_seq *pre_p ATTRIBUTE_UNUSED,
|
|||
{
|
||||
case LSHIFT_EXPR:
|
||||
case RSHIFT_EXPR:
|
||||
case LROTATE_EXPR:
|
||||
case RROTATE_EXPR:
|
||||
{
|
||||
/* We used to convert the right operand of a shift-expression
|
||||
to an integer_type_node in the FEs. But it is unnecessary
|
||||
|
|
Loading…
Add table
Reference in a new issue