From 76a082c0af116b48a455ab1a070a3fcbac7bdd73 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Mon, 8 Dec 2025 11:57:59 -0800 Subject: [PATCH] [dsymutil] Remove spurious exit when falling back to fat64 header (#171189) 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 the whole purpose. rdar://140998416 (cherry picked from commit 83fd2c994a82119edf249ac3c169250c26f0b21c) --- 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 9fd39caf22d18..23bfdf162a5d3 100644 --- a/llvm/tools/dsymutil/dsymutil.cpp +++ b/llvm/tools/dsymutil/dsymutil.cpp @@ -897,7 +897,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(); }