[clang] [CIR] Defer declarations and tentative definitions (PR #141700)
Andy Kaylor via cfe-commits
cfe-commits at lists.llvm.org
Wed May 28 11:00:15 PDT 2025
================
@@ -135,6 +135,10 @@ class CIRGenConsumer : public clang::ASTConsumer {
}
}
}
+
+ void CompleteTentativeDefinition(VarDecl *D) override {
+ Gen->CompleteTentativeDefinition(D);
+ }
----------------
andykaylor wrote:
We're using clang naming style in this file based on previous agreement with the clang maintainers.
https://github.com/llvm/llvm-project/pull/141700
More information about the cfe-commits
mailing list