Commit 0778e817 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

d3dcompiler: Parse the comma operator.

parent efec4f90
...@@ -2455,7 +2455,9 @@ expr: assignment_expr ...@@ -2455,7 +2455,9 @@ expr: assignment_expr
} }
| expr ',' assignment_expr | expr ',' assignment_expr
{ {
FIXME("Comma expression\n"); $$ = $1;
list_move_tail($$, $3);
d3dcompiler_free($3);
} }
%% %%
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment