From: Giovanni Mascellani Subject: [PATCH vkd3d 6/6] vkd3d-shader/hlsl: Parse bitwise OR. Message-Id: <20220125110753.1358613-6-gmascellani@codeweavers.com> Date: Tue, 25 Jan 2022 12:07:53 +0100 In-Reply-To: <20220125110753.1358613-1-gmascellani@codeweavers.com> References: <20220125110753.1358613-1-gmascellani@codeweavers.com> Signed-off-by: Giovanni Mascellani --- libs/vkd3d-shader/hlsl.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/vkd3d-shader/hlsl.y b/libs/vkd3d-shader/hlsl.y index 066396f9..73e87af6 100644 --- a/libs/vkd3d-shader/hlsl.y +++ b/libs/vkd3d-shader/hlsl.y @@ -3486,7 +3486,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: -- 2.34.1