Skip to content

Commit c296c35

Browse files
committed
[dsymutil] Re-enable 'auto' verification as the default
This patch re-enabled auto as the default verification mode when building with assertions or expensive checks. This was disabled in c2d2f72 because of an issue with temp files on Windows, which was fixed in 519490f26260.
1 parent 8437847 commit c296c35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/tools/dsymutil/dsymutil.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ enum class DWARFVerify : uint8_t {
9292
All = Input | Output,
9393
Auto = Input | OutputOnValidInput,
9494
#if !defined(NDEBUG) || defined(EXPENSIVE_CHECKS)
95-
Default = None // FIXME: Auto
95+
Default = Auto
9696
#else
9797
Default = None
9898
#endif

0 commit comments

Comments
 (0)