diff --git a/.pick_status.json b/.pick_status.json index 49189629e90..8a8ad920541 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -5908,7 +5908,7 @@ "description": "ac/llvm: fix AC_TM_CHECK_IR", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "3f272fd15e9f0776056699e90ce021f4766d3384" }, diff --git a/src/amd/llvm/ac_llvm_helper.cpp b/src/amd/llvm/ac_llvm_helper.cpp index 9d831f37a65..c86cca0d009 100644 --- a/src/amd/llvm/ac_llvm_helper.cpp +++ b/src/amd/llvm/ac_llvm_helper.cpp @@ -27,6 +27,7 @@ #include #include #include +#include #include #include #include @@ -307,7 +308,7 @@ LLVMPassManagerRef ac_create_passmgr(LLVMTargetLibraryInfoRef target_library_inf LLVMAddTargetLibraryInfo(target_library_info, passmgr); if (check_ir) - unwrap(passmgr)->add(createMachineVerifierPass("mesa ir")); + unwrap(passmgr)->add(createVerifierPass()); unwrap(passmgr)->add(createAlwaysInlinerLegacyPass());