i965/vec4: Spaces around operators.

This commit is contained in:
Matt Turner
2016-01-19 12:12:38 -08:00
parent e734fb0326
commit 866a6bf9f7
+1 -1
View File
@@ -1069,7 +1069,7 @@ vec4_visitor::nir_emit_alu(nir_alu_instr *instr)
case nir_op_umul_high: {
struct brw_reg acc = retype(brw_acc_reg(8), dst.type);
if (devinfo->gen >=8)
if (devinfo->gen >= 8)
emit(MUL(acc, op[0], retype(op[1], BRW_REGISTER_TYPE_UW)));
else
emit(MUL(acc, op[0], op[1]));