Commit a02f7663 authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

d3dcompiler: Fix tracing of expression operators.

This hunk should have been in d25486fb.
parent 69c72c96
...@@ -2083,6 +2083,11 @@ static const char *debug_expr_op(const struct hlsl_ir_expr *expr) ...@@ -2083,6 +2083,11 @@ static const char *debug_expr_op(const struct hlsl_ir_expr *expr)
"sat", "sat",
"pre++",
"pre--",
"post++",
"post--",
"+", "+",
"-", "-",
"*", "*",
...@@ -2113,11 +2118,6 @@ static const char *debug_expr_op(const struct hlsl_ir_expr *expr) ...@@ -2113,11 +2118,6 @@ static const char *debug_expr_op(const struct hlsl_ir_expr *expr)
"pow", "pow",
"pre++",
"pre--",
"post++",
"post--",
"lerp", "lerp",
",", ",",
......
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