From: Michel Dänzer Date: Tue, 17 Feb 2015 08:03:35 +0000 (+0900) Subject: Revert "radeon/llvm: enable unsafe math for graphics shaders" X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4db985a5fa9ea985616a726b1770727309502d81;p=mesa.git Revert "radeon/llvm: enable unsafe math for graphics shaders" This reverts commit 0e9cdedd2e3943bdb7f3543a3508b883b167e427. It caused the grass to disappear in The Talos Principle. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89069 Cc: "10.5 10.4" Reviewed-by: Tom Stellard Reviewed-by: Marek Olšák --- diff --git a/src/gallium/drivers/radeon/radeon_llvm_emit.c b/src/gallium/drivers/radeon/radeon_llvm_emit.c index 0f9dbab4f24..624077c7465 100644 --- a/src/gallium/drivers/radeon/radeon_llvm_emit.c +++ b/src/gallium/drivers/radeon/radeon_llvm_emit.c @@ -80,10 +80,6 @@ void radeon_llvm_shader_type(LLVMValueRef F, unsigned type) sprintf(Str, "%1d", llvm_type); LLVMAddTargetDependentFunctionAttr(F, "ShaderType", Str); - - if (type != TGSI_PROCESSOR_COMPUTE) { - LLVMAddTargetDependentFunctionAttr(F, "unsafe-fp-math", "true"); - } } static void init_r600_target()