Skip to content

Commit c2d2f72

Browse files
committed
[dsymutil] Disable 'auto' verification as the default
Don't make 'auto' verification the default when assertions or expensive checks are enabled while I investigate the test failures on the bots.
1 parent 71dbd86 commit c2d2f72

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
@@ -99,7 +99,7 @@ enum class DWARFVerify : uint8_t {
9999
All = Input | Output,
100100
Auto = Input | OutputOnValidInput,
101101
#if !defined(NDEBUG) || defined(EXPENSIVE_CHECKS)
102-
Default = Auto
102+
Default = None // FIXME: Auto
103103
#else
104104
Default = None
105105
#endif

0 commit comments

Comments
 (0)