[PATCH] D119061: [Clang] noinline call site attribute
Dávid Bolvanský via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Feb 14 13:12:20 PST 2022
xbolva00 added inline comments.
================
Comment at: clang/include/clang/Basic/Attr.td:1764
+def NoInline : DeclOrStmtAttr {
+ let Spellings = [Clang<"noinline">, Declspec<"noinline">];
+ let Documentation = [NoInlineDocs];
----------------
What I need to mention here. With Clang<"noinline">, we lost support for [[gnu::noinline]] syntax, now unrecognized. Maybe it is ok, as we have now more powerful attribute?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D119061/new/
https://reviews.llvm.org/D119061
More information about the cfe-commits
mailing list