From 70ca013e8754c12bae4e4f23ec51cb26d7ec01a0 Mon Sep 17 00:00:00 2001 From: Arlie Davis Date: Mon, 7 Jul 2025 13:35:24 -0700 Subject: [PATCH] Fix post-build check --- llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp index 65a873553b9ac..bc74daf983e40 100644 --- a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp @@ -3572,7 +3572,8 @@ void CodeViewDebug::collectDebugInfoForJumpTables(const MachineFunction *MF, BaseOffset, Branch, MF->getJTISymbol(JumpTableIndex, MMI->getContext()), - JTE.MBBs.size()}; + JTE.MBBs.size(), + {}}; for (const auto &MBB : JTE.MBBs) CVJTI.Cases.push_back(MBB->getSymbol()); CurFn->JumpTables.push_back(std::move(CVJTI));