vkd3d-shader/hlsl: Parse right shift.

Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com>
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Francisco Casas <fcasas@codeweavers.com>
Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Giovanni Mascellani 2022-02-24 12:45:19 -06:00 committed by Alexandre Julliard
parent 6fa1381657
commit 7aeb99261c

View File

@ -3684,7 +3684,7 @@ shift_expr:
}
| shift_expr OP_RIGHTSHIFT add_expr
{
hlsl_fixme(ctx, &@$, "Right shift.");
$$ = add_binary_shift_expr_merge(ctx, $1, $3, HLSL_OP2_RSHIFT, &@2);
}
relational_expr: