================
@@ -177,6 +177,26 @@ static bool isLanguageDefinedBuiltin(const SourceManager 
&SourceMgr,
   return false;
 }
 
+static bool isReservedAttrName(Preprocessor &PP, IdentifierInfo *II) {
----------------
jwakely wrote:

> I think they absolutely should, but those names are not portable to other 
> compilers.

They _should_ be. GCC has always accepted `__attribute__((__foo__))` as well as 
the `foo` spelling, and uses the same rule for `[[...]]` attributes. I assume 
Intel compilers do the same for compatibility.

Maybe MSVC doesn't? Seems like something they might support if asked to though.

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

Reply via email to