From 902c8731f4e16be4c66bb4280550a1c2d9d28537 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Tue, 21 Apr 2020 16:06:54 -0700 Subject: [PATCH] intel/compiler: Put back saturate on [iu]add_sat opcodes I deleted one too many inst->saturate = ... lines. This one must stay. Fixes: b7c47c4f7cf ("intel/compiler: Drop nir_lower_to_source_mods() and related handling.") Reviewed-by: Jason Ekstrand Part-of: --- src/intel/compiler/brw_fs_nir.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel/compiler/brw_fs_nir.cpp b/src/intel/compiler/brw_fs_nir.cpp index ebb467ca0e0..ddce70dd91f 100644 --- a/src/intel/compiler/brw_fs_nir.cpp +++ b/src/intel/compiler/brw_fs_nir.cpp @@ -1250,6 +1250,7 @@ fs_visitor::nir_emit_alu(const fs_builder &bld, nir_alu_instr *instr, case nir_op_iadd_sat: case nir_op_uadd_sat: inst = bld.ADD(result, op[0], op[1]); + inst->saturate = true; break; case nir_op_isub_sat: -- 2.30.2