================
@@ -7256,6 +7257,71 @@ void Sema::CheckCompletedCXXClass(Scope *S, 
CXXRecordDecl *Record) {
     else if (Record->hasAttr<CUDADeviceBuiltinTextureTypeAttr>())
       checkCUDADeviceBuiltinTextureClassTemplate(*this, Record);
   }
+
+  if (getLangOpts().TypeAwareAllocators) {
+    llvm::SmallVector<const FunctionDecl *, 2> TypeAwareNewDecls;
+    llvm::SmallVector<const FunctionDecl *, 2> TypeAwareDeleteDecls;
+    llvm::SmallVector<const FunctionDecl *, 2> TypeAwareArrayNewDecls;
+    llvm::SmallVector<const FunctionDecl *, 2> TypeAwareArrayDeleteDecls;
----------------
cor3ntin wrote:

@ojhunt 

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

Reply via email to