From 4fb2b157d22439ff48a077408909fe9f81d5299b Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Mon, 8 Dec 2025 11:24:07 -0800 Subject: [PATCH] [dsymutil] Remove spurious exit when falling back to fat64 header In #118898 I changed dsymutil to emit a warning instead of an error when exceeding the 4GB limit for a slice and automatically fall back to using the fat64 header. However, while doing so, I forgot to remove the return which defeats that purpose. rdar://140998416 --- llvm/tools/dsymutil/dsymutil.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/llvm/tools/dsymutil/dsymutil.cpp b/llvm/tools/dsymutil/dsymutil.cpp index 688f6aaf3d0c9..a71c57c60593c 100644 --- a/llvm/tools/dsymutil/dsymutil.cpp +++ b/llvm/tools/dsymutil/dsymutil.cpp @@ -873,7 +873,6 @@ int dsymutil_main(int argc, char **argv, const llvm::ToolContext &) { "-fat64 flag to force a 64-bit header and silence this " "warning.", FileOffset); - return EXIT_FAILURE; } FileOffset += stat->getSize(); }