gallivm: Fix LLVMAtomicRMWBinOpFMax spelling

Fixes build with LLVM >= 15.

Fixes: 203920d4c6 ("gallivm: add atomic 32-bit float support")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18701>
This commit is contained in:
Michel Dänzer
2022-09-20 14:24:51 +02:00
committed by Marge Bot
parent 2a1a8ce472
commit 43c8064b1e
@@ -1029,7 +1029,7 @@ static void emit_atomic_global(struct lp_build_nir_context *bld_base,
op = LLVMAtomicRMWBinOpFMin;
break;
case nir_intrinsic_global_atomic_fmax:
op = LLVMAtomicRMWBinOpFmax;
op = LLVMAtomicRMWBinOpFMax;
break;
#endif
default: