diff --git a/src/intel/compiler/brw_fs_lower_regioning.cpp b/src/intel/compiler/brw_fs_lower_regioning.cpp index 7307ec9d6f2..2364ed1c3f9 100644 --- a/src/intel/compiler/brw_fs_lower_regioning.cpp +++ b/src/intel/compiler/brw_fs_lower_regioning.cpp @@ -310,7 +310,7 @@ namespace { return true; } - if (is_send(inst) || inst->is_math() || inst->is_control_source(i) || + if (is_send(inst) || inst->is_control_source(i) || inst->opcode == BRW_OPCODE_DPAS) { return false; } @@ -335,7 +335,7 @@ namespace { has_invalid_dst_region(const intel_device_info *devinfo, const fs_inst *inst) { - if (is_send(inst) || inst->is_math()) { + if (is_send(inst)) { return false; } else { const brw_reg_type exec_type = get_exec_type(inst);