@@ -208,7 +208,6 @@ class OptTable {
208
208
unsigned MinimumLength = 4,
209
209
unsigned MaximumDistance = UINT_MAX) const ;
210
210
211
- LLVM_DEPRECATED (" Use the VisibilityMask overload instead" , " " )
212
211
unsigned findNearest (StringRef Option, std::string &NearestString,
213
212
unsigned FlagsToInclude, unsigned FlagsToExclude = 0 ,
214
213
unsigned MinimumLength = 4 ,
@@ -226,7 +225,6 @@ class OptTable {
226
225
return findNearest (Option, ExactString, VisibilityMask, 4 , 0 ) == 0 ;
227
226
}
228
227
229
- LLVM_DEPRECATED (" Use the VisibilityMask overload instead" , " " )
230
228
bool findExact (StringRef Option, std::string &ExactString,
231
229
unsigned FlagsToInclude, unsigned FlagsToExclude = 0 ) const {
232
230
return findNearest (Option, ExactString, FlagsToInclude, FlagsToExclude, 4 ,
@@ -249,7 +247,6 @@ class OptTable {
249
247
ParseOneArg (const ArgList &Args, unsigned &Index,
250
248
Visibility VisibilityMask = Visibility()) const ;
251
249
252
- LLVM_DEPRECATED (" Use the VisibilityMask overload instead" , " " )
253
250
std::unique_ptr<Arg> ParseOneArg (const ArgList &Args, unsigned &Index,
254
251
unsigned FlagsToInclude,
255
252
unsigned FlagsToExclude) const ;
@@ -280,7 +277,6 @@ class OptTable {
280
277
unsigned &MissingArgCount,
281
278
Visibility VisibilityMask = Visibility()) const ;
282
279
283
- LLVM_DEPRECATED (" Use the VisibilityMask overload instead" , " " )
284
280
InputArgList ParseArgs (ArrayRef<const char *> Args, unsigned &MissingArgIndex,
285
281
unsigned &MissingArgCount, unsigned FlagsToInclude,
286
282
unsigned FlagsToExclude = 0 ) const ;
@@ -320,7 +316,6 @@ class OptTable {
320
316
bool ShowHidden = false , bool ShowAllAliases = false ,
321
317
Visibility VisibilityMask = Visibility()) const ;
322
318
323
- LLVM_DEPRECATED (" Use the VisibilityMask overload instead" , " " )
324
319
void printHelp (raw_ostream &OS, const char *Usage, const char *Title,
325
320
unsigned FlagsToInclude, unsigned FlagsToExclude,
326
321
bool ShowAllAliases) const ;
0 commit comments