[llvm] c2d2f72 - [dsymutil] Disable 'auto' verification as the default
Jonas Devlieghere via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 31 16:28:02 PDT 2023
Author: Jonas Devlieghere
Date: 2023-03-31T16:27:56-07:00
New Revision: c2d2f724fe708a650b16c9d2f1f1a47156e5b2ea
URL: https://github.com/llvm/llvm-project/commit/c2d2f724fe708a650b16c9d2f1f1a47156e5b2ea
DIFF: https://github.com/llvm/llvm-project/commit/c2d2f724fe708a650b16c9d2f1f1a47156e5b2ea.diff
LOG: [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.
Added:
Modified:
llvm/tools/dsymutil/dsymutil.cpp
Removed:
################################################################################
diff --git a/llvm/tools/dsymutil/dsymutil.cpp b/llvm/tools/dsymutil/dsymutil.cpp
index e6e5d7bdcfc0..77a55c8ccc1b 100644
--- a/llvm/tools/dsymutil/dsymutil.cpp
+++ b/llvm/tools/dsymutil/dsymutil.cpp
@@ -99,7 +99,7 @@ enum class DWARFVerify : uint8_t {
All = Input | Output,
Auto = Input | OutputOnValidInput,
#if !defined(NDEBUG) || defined(EXPENSIVE_CHECKS)
- Default = Auto
+ Default = None // FIXME: Auto
#else
Default = None
#endif
More information about the llvm-commits
mailing list