File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
llvm/lib/CodeGen/GlobalISel Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -52,11 +52,13 @@ enum class DebugLocVerifyLevel {
52
52
static cl::opt<DebugLocVerifyLevel> VerifyDebugLocs (
53
53
" verify-legalizer-debug-locs" ,
54
54
cl::desc (" Verify that debug locations are handled" ),
55
- cl::values(clEnumVal(DebugLocVerifyLevel::None, " No verification" ),
56
- clEnumVal(DebugLocVerifyLevel::Legalizations,
57
- " Verify legalizations" ),
58
- clEnumVal(DebugLocVerifyLevel::LegalizationsAndArtifactCombiners,
59
- " Verify legalizations and artifact combines" )),
55
+ cl::values(
56
+ clEnumValN (DebugLocVerifyLevel::None, " none" , " No verification" ),
57
+ clEnumValN(DebugLocVerifyLevel::Legalizations, " legalizations" ,
58
+ " Verify legalizations" ),
59
+ clEnumValN(DebugLocVerifyLevel::LegalizationsAndArtifactCombiners,
60
+ " legalizations+artifactcombiners" ,
61
+ " Verify legalizations and artifact combines" )),
60
62
cl::init(DebugLocVerifyLevel::Legalizations));
61
63
#else
62
64
// Always disable it for release builds by preventing the observer from being
You can’t perform that action at this time.
0 commit comments