@@ -69,42 +69,42 @@ llvm::cl::opt<std::string>
69
69
" whose name contains this substring" ));
70
70
71
71
llvm::cl::list<std::string>
72
- SILPrintBefore (" sil-print-before" ,
72
+ SILPrintBefore (" sil-print-before" , llvm::cl::CommaSeparated,
73
73
llvm::cl::desc (" Print out the sil before passes which "
74
74
" contain a string from this list." ));
75
75
76
76
llvm::cl::list<std::string>
77
- SILPrintAfter (" sil-print-after" ,
77
+ SILPrintAfter (" sil-print-after" , llvm::cl::CommaSeparated,
78
78
llvm::cl::desc (" Print out the sil after passes which contain "
79
79
" a string from this list." ));
80
80
81
81
llvm::cl::list<std::string>
82
- SILPrintAround (" sil-print-around" ,
82
+ SILPrintAround (" sil-print-around" , llvm::cl::CommaSeparated,
83
83
llvm::cl::desc (" Print out the sil before and after passes "
84
84
" which contain a string from this list" ));
85
85
86
86
llvm::cl::list<std::string>
87
- SILDisablePass (" sil-disable-pass" ,
87
+ SILDisablePass (" sil-disable-pass" , llvm::cl::CommaSeparated,
88
88
llvm::cl::desc (" Disable passes "
89
89
" which contain a string from this list" ));
90
90
91
91
llvm::cl::list<std::string> SILVerifyBeforePass (
92
- " sil-verify-before-pass" ,
92
+ " sil-verify-before-pass" , llvm::cl::CommaSeparated,
93
93
llvm::cl::desc (" Verify the module/analyses before we run "
94
94
" a pass from this list" ));
95
95
96
96
llvm::cl::list<std::string> SILVerifyAroundPass (
97
- " sil-verify-around-pass" ,
97
+ " sil-verify-around-pass" , llvm::cl::CommaSeparated,
98
98
llvm::cl::desc (" Verify the module/analyses before/after we run "
99
99
" a pass from this list" ));
100
100
101
101
llvm::cl::list<std::string>
102
- SILVerifyAfterPass (" sil-verify-after-pass" ,
102
+ SILVerifyAfterPass (" sil-verify-after-pass" , llvm::cl::CommaSeparated,
103
103
llvm::cl::desc (" Verify the module/analyses after we run "
104
104
" a pass from this list" ));
105
105
106
106
llvm::cl::list<std::string> SILForceVerifyAroundPass (
107
- " sil-verify-force-analysis-around-pass" ,
107
+ " sil-verify-force-analysis-around-pass" , llvm::cl::CommaSeparated,
108
108
llvm::cl::desc (" For the given passes, precompute analyses before the pass "
109
109
" and verify analyses after the pass" ));
110
110
0 commit comments