About Social Code
aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2025-09-30 15:10:17 +0200
committerMarge Bot <marge-bot@fdo.invalid>2025-09-30 17:02:31 +0000
commit14759757ddd95f609823e4c3718bcad6123e63d1 (patch)
tree7a1cd9e60f8f3b1851b7077b0e2433761a37914e /meson.build
parent27328375913d1fce395e3ea17800bf780b7b9ca2 (diff)
meson.build: remove dead code
This is already inside an `if with_clc`, so there was no case where _llvmspirvlib_min_version was set to >= 8.0.1.3. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37635>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build9
1 files changed, 1 insertions, 8 deletions
diff --git a/meson.build b/meson.build
index d7ed229b14a..b6d5d9fcc01 100644
--- a/meson.build
+++ b/meson.build
@@ -1835,14 +1835,7 @@ if with_clc
# Require an SPIRV-LLVM-Translator version compatible with the chosen LLVM
# one.
- # This first version check is still needed as maybe LLVM 8.0 was picked but
- # we do not want to accept SPIRV-LLVM-Translator 8.0.0.1 as that version
- # does not have the required API and those are only available starting from
- # 8.0.1.3.
- _llvmspirvlib_min_version = '>= 8.0.1.3'
- if with_clc
- _llvmspirvlib_min_version = '>= 15.0.0.0'
- endif
+ _llvmspirvlib_min_version = '>= 15.0.0.0'
_llvmspirvlib_version = [
_llvmspirvlib_min_version,