[PATCH] D114543: Extend the `uwtable` attribute with unwind table kind
Momchil Velikov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 28 06:48:37 PST 2022
chill marked 3 inline comments as done.
chill added inline comments.
================
Comment at: llvm/lib/IR/Attributes.cpp:466
+ std::string Result = "uwtable";
+ if (Kind != UWTableKind::Default) {
+ Result += '(';
----------------
MaskRay wrote:
> `Result += ('(' + Twine(unsigned(kind)) + ')').str();`
That's cool, but on top of D118451
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D114543/new/
https://reviews.llvm.org/D114543
More information about the llvm-commits
mailing list