================
@@ -1400,6 +1416,171 @@ bool Parser::HandlePragmaMSAllocText(StringRef 
PragmaName,
   return true;
 }
 
+NestedNameSpecifier *
+Parser::zOSParseIdentifier(StringRef PragmaName,
+                           const IdentifierInfo *IdentName) {
+  NestedNameSpecifier *NestedId = nullptr;
----------------
erichkeane wrote:

What is this for the grammar of?  Are you just trying to get the name of a 
thing?  I did something similar, see : `ParseOpenACCIDExpression`.  For C++ you 
can use `ParseCXXIdExpression`, and I emulated it for C.

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

Reply via email to