================
@@ -72,6 +74,9 @@ class DereferenceChecker
   const DerefBugType FixedAddressBug{&FixedDerefChecker,
                                      "Dereference of a fixed address",
                                      "a dereference of a fixed address"};
+  const BugType NullPointerArithmBug{
+      &NullPointerArithmChecker,
+      "Possible undefined arithmetic operation involving a null pointer"};
----------------
NagyDonat wrote:

```suggestion
      "Possibly undefined arithmetic operation involving a null pointer"};
```
I think this is a bit more correct grammatically.

https://github.com/llvm/llvm-project/pull/157129
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to