================
@@ -1370,6 +1370,11 @@ class ASTContext : public RefCountedBase<ASTContext> {
   /// are stored here.
   llvm::DenseMap<const CXXMethodDecl *, CXXCastPath> LambdaCastPaths;
 
+  /// Keep track of functions that contain expressions that are not valid in
+  /// streaming mode on AArch64. This is used to check inlining validity.
+  llvm::DenseSet<const FunctionDecl *>
+      AArch64ContansExprNotSafeForStreamingFunctions;
----------------
sdesmalen-arm wrote:

nit: 
```suggestion
      AArch64ContainsExprNotSafeForStreamingFunctions;
```

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

Reply via email to