Module: Mesa Branch: master Commit: 866a6bf9f70625517d6d2c17be9523b9f035f1db URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=866a6bf9f70625517d6d2c17be9523b9f035f1db
Author: Matt Turner <[email protected]> Date: Tue Jan 19 12:12:38 2016 -0800 i965/vec4: Spaces around operators. --- src/mesa/drivers/dri/i965/brw_vec4_nir.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/brw_vec4_nir.cpp b/src/mesa/drivers/dri/i965/brw_vec4_nir.cpp index 4ee2ed4..1b87e30 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4_nir.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4_nir.cpp @@ -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])); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
