Skip to content

Commit 4fb2b15

Browse files
committed
[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
1 parent fa511cd commit 4fb2b15

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
@@ -873,7 +873,6 @@ int dsymutil_main(int argc, char **argv, const llvm::ToolContext &) {
873873
"-fat64 flag to force a 64-bit header and silence this "
874874
"warning.",
875875
FileOffset);
876-
return EXIT_FAILURE;
877876
}
878877
FileOffset += stat->getSize();
879878
}

0 commit comments

Comments
 (0)