diff --git a/.pick_status.json b/.pick_status.json index fa06bac7828..ee4172ccf51 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -1498,7 +1498,7 @@ "description": "clover/llvm: Use std::nullopt already with LLVM 16", "nominated": false, "nomination_type": null, - "resolution": 4, + "resolution": 1, "main_sha": null, "because_sha": null }, diff --git a/src/gallium/frontends/clover/llvm/codegen/native.cpp b/src/gallium/frontends/clover/llvm/codegen/native.cpp index 9899bbe0af6..869f8c6e2af 100644 --- a/src/gallium/frontends/clover/llvm/codegen/native.cpp +++ b/src/gallium/frontends/clover/llvm/codegen/native.cpp @@ -116,7 +116,7 @@ namespace { std::unique_ptr tm { t->createTargetMachine(target.triple, target.cpu, "", {}, -#if LLVM_VERSION_MAJOR >= 17 +#if LLVM_VERSION_MAJOR >= 16 std::nullopt, std::nullopt, #else ::llvm::None, ::llvm::None,