d3dcompiler: Get rid of the unused "subexpressions" field of struct hlsl_ir_expr.
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:
parent
0778e81787
commit
81a7da48b9
|
@ -879,7 +879,6 @@ struct hlsl_ir_expr
|
|||
struct hlsl_ir_node node;
|
||||
enum hlsl_ir_expr_op op;
|
||||
struct hlsl_ir_node *operands[3];
|
||||
struct list *subexpressions;
|
||||
};
|
||||
|
||||
enum hlsl_ir_jump_type
|
||||
|
|
|
@ -2186,7 +2186,6 @@ static void free_ir_constructor(struct hlsl_ir_constructor *constructor)
|
|||
|
||||
static void free_ir_expr(struct hlsl_ir_expr *expr)
|
||||
{
|
||||
free_instr_list(expr->subexpressions);
|
||||
d3dcompiler_free(expr);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue