[PATCH] D157384: [clang] Added Attr::getVariety function

2023-08-09 Thread Timo Stripf via Phabricator via cfe-commits
strimo378 abandoned this revision. strimo378 added a comment. Unnecessary Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D157384/new/ https://reviews.llvm.org/D157384 ___ cfe-commits mailing list

[PATCH] D157384: [clang] Added Attr::getVariety function

2023-08-09 Thread Timo Stripf via Phabricator via cfe-commits
strimo378 updated this revision to Diff 548482. strimo378 added a comment. Using Attr::getSyntax (instead of unnecessary added Attr::getVariety) Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D157384/new/ https://reviews.llvm.org/D157384 Files:

[PATCH] D157384: [clang] Added Attr::getVariety function

2023-08-08 Thread Timo Stripf via Phabricator via cfe-commits
strimo378 abandoned this revision. strimo378 added a comment. @aaron.ballman Thank you for the information. Strange that I missed that ... I even used the function somewhere else o_O Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D157384/new/

[PATCH] D157384: [clang] Added Attr::getVariety function

2023-08-08 Thread Aaron Ballman via Phabricator via cfe-commits
aaron.ballman added inline comments. Comment at: clang/include/clang/AST/Attr.h:87-99 + enum class Variety { +None, +GNU, // __attribute__((...)) +Declspec, // __declspec(...) +Microsoft,// [...] +CXX11,// [[...]] +C2x,

[PATCH] D157384: [clang] Added Attr::getVariety function

2023-08-08 Thread Timo Stripf via Phabricator via cfe-commits
strimo378 created this revision. strimo378 added a reviewer: aaron.ballman. Herald added a project: All. strimo378 requested review of this revision. Herald added a project: clang. Herald added a subscriber: cfe-commits. The commit extends ClangAttrEmitter of tablegen to generate