[clang] [llvm] [clang] Add `-verify-directives` cc1 flag (PR #179835)

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Tue Feb 24 07:04:40 PST 2026


================
@@ -30,6 +30,13 @@ class LangOptions;
 class SourceManager;
 class TextDiagnosticBuffer;
 
+enum class DiagnosticMatchResult {
+  None,
+  Partial,        /// Match, but not a full match
+  AtLeastPartial, /// Match, but we didn't check for full match
----------------
AaronBallman wrote:

```suggestion
  Partial,        /// Match, but not a full match.
  AtLeastPartial, /// Match, but we didn't check for full match.
```

https://github.com/llvm/llvm-project/pull/179835


More information about the cfe-commits mailing list