Skip to content

Commit 76a082c

Browse files
committed
[dsymutil] Remove spurious exit when falling back to fat64 header (llvm#171189)
In llvm#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 83fd2c9)
1 parent 219dd76 commit 76a082c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

llvm/tools/dsymutil/dsymutil.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,6 @@ int dsymutil_main(int argc, char **argv, const llvm::ToolContext &) {
897897
"-fat64 flag to force a 64-bit header and silence this "
898898
"warning.",
899899
FileOffset);
900-
return EXIT_FAILURE;
901900
}
902901
FileOffset += stat->getSize();
903902
}

0 commit comments

Comments
 (0)