================
@@ -392,6 +392,10 @@ class Context {
   bool performsCallback(unsigned ID,
                         llvm::SmallVectorImpl<int> &Encoding) const;
 
+  /// Return true if this builtin has parameters at fixed positions
+  /// that must be non-null.
+  bool IsNonNull(unsigned ID, llvm::SmallVectorImpl<int> &Indxs) const;
----------------
Sirraide wrote:

```suggestion
  /// Return true if this builtin has parameters that must be non-null. 
  /// The parameter indices are appended into 'Indxs'.
  bool isNonNull(unsigned ID, SmallVectorImpl<int> &Indxs) const;
```
The other functions here seem to use camelCase, so this one should too for 
consistency.

https://github.com/llvm/llvm-project/pull/158626
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to