[PATCH] D131330: [llvm][Demangle] Add getter for FunctionEncoding::Attrs

Michael Buch via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 8 03:46:48 PDT 2022


Michael137 updated this revision to Diff 450754.
Michael137 added a comment.

- Rebase


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D131330/new/

https://reviews.llvm.org/D131330

Files:
  llvm/include/llvm/Demangle/ItaniumDemangle.h


Index: llvm/include/llvm/Demangle/ItaniumDemangle.h
===================================================================
--- llvm/include/llvm/Demangle/ItaniumDemangle.h
+++ llvm/include/llvm/Demangle/ItaniumDemangle.h
@@ -888,6 +888,7 @@
   FunctionRefQual getRefQual() const { return RefQual; }
   NodeArray getParams() const { return Params; }
   const Node *getReturnType() const { return Ret; }
+  const Node *getAttrs() const { return Attrs; }
 
   bool hasRHSComponentSlow(OutputBuffer &) const override { return true; }
   bool hasFunctionSlow(OutputBuffer &) const override { return true; }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D131330.450754.patch
Type: text/x-patch
Size: 599 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220808/2e9e4721/attachment.bin>


More information about the llvm-commits mailing list