d3dcompiler: Fix tracing of expression operators.

This hunk should have been in d25486fba4b87981618e0f55a5a7388db95c204f.
This commit is contained in:
Matteo Bruni 2014-10-16 01:32:22 +02:00 committed by Alexandre Julliard
parent 69c72c969f
commit a02f76637d

View File

@ -2083,6 +2083,11 @@ static const char *debug_expr_op(const struct hlsl_ir_expr *expr)
"sat",
"pre++",
"pre--",
"post++",
"post--",
"+",
"-",
"*",
@ -2113,11 +2118,6 @@ static const char *debug_expr_op(const struct hlsl_ir_expr *expr)
"pow",
"pre++",
"pre--",
"post++",
"post--",
"lerp",
",",