d3dcompiler: Parse the comma operator.

Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2020-02-11 22:54:20 -06:00 committed by Alexandre Julliard
parent efec4f90aa
commit 0778e81787

View file

@ -2455,7 +2455,9 @@ expr: assignment_expr
}
| expr ',' assignment_expr
{
FIXME("Comma expression\n");
$$ = $1;
list_move_tail($$, $3);
d3dcompiler_free($3);
}
%%