Commit 81a7da48 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

d3dcompiler: Get rid of the unused "subexpressions" field of struct hlsl_ir_expr.

parent 0778e817
......@@ -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);
}
......
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