[clang] [clang] Factor out OpenACC part of `Sema` (PR #84184)
Erich Keane via cfe-commits
cfe-commits at lists.llvm.org
Thu Mar 7 06:42:47 PST 2024
================
@@ -1162,6 +1162,11 @@ class Sema final {
/// CurContext - This is the current declaration context of parsing.
DeclContext *CurContext;
+ SemaOpenACC &OpenACC() {
+ assert(OpenACCPtr);
----------------
erichkeane wrote:
IMO, there is value to having the assert. I can definitely see a world where the sub-types are allowed to get 'big enough' that restricting them to only be created 'sometimes' has value.
https://github.com/llvm/llvm-project/pull/84184
More information about the cfe-commits
mailing list