vkd3d-shader/hlsl: Parse bitwise OR.

Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com>
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Francisco Casas <fcasas@codeweavers.com>
Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Giovanni Mascellani 2022-02-11 21:04:09 +01:00 committed by Alexandre Julliard
parent c7695d0511
commit 02a2a9a929

View File

@ -3657,7 +3657,7 @@ bitor_expr:
bitxor_expr
| bitor_expr '|' bitxor_expr
{
hlsl_fixme(ctx, &@$, "Bitwise OR.");
$$ = add_binary_bitwise_expr_merge(ctx, $1, $3, HLSL_OP2_BIT_OR, &@2);
}
logicand_expr: