i965: Revert part of f5cc3fdcf1.

Fixes non-termination in various Piglit tests.

Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
This commit is contained in:
Kenneth Graunke
2014-08-11 15:05:54 -07:00
parent 602a3f92d4
commit f73594778b
+1 -1
View File
@@ -82,7 +82,7 @@ is_expression(const vec4_instruction *const inst)
case SHADER_OPCODE_COS:
return inst->mlen == 0;
default:
return !inst->has_side_effects();
return false;
}
}