diff options
author | Marek Olšák <[email protected]> | 2020-03-13 19:49:59 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-03-17 20:47:48 +0000 |
commit | 8dc5e174c7b96b6d4b5a6923068410f298167a39 (patch) | |
tree | e2aae25461da0a07414746cec76402d1a6313a78 /src/amd/llvm | |
parent | 63a5051ea6bf4d72a02594d21a3351e44bd70da7 (diff) |
ac: don't set old denormals flags with LLVM >= 11
Acked-by: Pierre-Eric Pelloux-Prayer <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4196>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4196>
Diffstat (limited to 'src/amd/llvm')
-rw-r--r-- | src/amd/llvm/ac_llvm_util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/amd/llvm/ac_llvm_util.c b/src/amd/llvm/ac_llvm_util.c index 5cdb51242b2..e32b630fbdc 100644 --- a/src/amd/llvm/ac_llvm_util.c +++ b/src/amd/llvm/ac_llvm_util.c @@ -169,7 +169,8 @@ static LLVMTargetMachineRef ac_create_target_machine(enum radeon_family family, LLVMTargetRef target = ac_get_llvm_target(triple); snprintf(features, sizeof(features), - "+DumpCode,-fp32-denormals,+fp64-denormals%s%s%s%s%s", + "+DumpCode%s%s%s%s%s%s", + LLVM_VERSION_MAJOR >= 11 ? "" : ",-fp32-denormals,+fp64-denormals", family >= CHIP_NAVI10 && !(tm_options & AC_TM_WAVE32) ? ",+wavefrontsize64,-wavefrontsize32" : "", tm_options & AC_TM_FORCE_ENABLE_XNACK ? ",+xnack" : "", |