i965/vec4: Spaces around operators.
authorMatt Turner <mattst88@gmail.com>
Tue, 19 Jan 2016 20:12:38 +0000 (12:12 -0800)
committerMatt Turner <mattst88@gmail.com>
Tue, 19 Jan 2016 20:12:38 +0000 (12:12 -0800)
src/mesa/drivers/dri/i965/brw_vec4_nir.cpp

index 4ee2ed47d40e8a68dca1a750e7e26f48adcb3db7..1b87e3044c2efac19a679ed0c3488c97c6ced25f 100644 (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]));