Home
last modified time | relevance | path

Searched defs:DiagnosticPredicate (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/
H A DMCTargetAsmParser.h159 struct DiagnosticPredicate { struct
160 DiagnosticPredicateTy Type; argument
162 explicit DiagnosticPredicate(bool Match) in DiagnosticPredicate() function
165 DiagnosticPredicate(DiagnosticPredicateTy T) : Type(T) {} in DiagnosticPredicate() function
167 DiagnosticPredicate& operator=(const DiagnosticPredicate &) = default; argument
170 bool isMatch() const { return Type == DiagnosticPredicateTy::Match; } in isMatch() argument
171 bool isNearMatch() const { return Type == DiagnosticPredicateTy::NearMatch; } in isNearMatch() argument
172 bool isNoMatch() const { return Type == DiagnosticPredicateTy::NoMatch; } in isNoMatch() argument