[PATCH] D149975: [Demangle] fix comment NFC
Nick Desaulniers via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri May 5 10:05:25 PDT 2023
nickdesaulniers created this revision.
Herald added a project: All.
nickdesaulniers requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
The second and third parameter of itaniumDemangle were removed in
commit 7277a72b908d <https://reviews.llvm.org/rG7277a72b908d27eb8449073b0c461f23bf8bfc0a> ("[Demangle] remove unused params of itaniumDemangle")
Update a comment to reflect this.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D149975
Files:
llvm/include/llvm/Demangle/Demangle.h
Index: llvm/include/llvm/Demangle/Demangle.h
===================================================================
--- llvm/include/llvm/Demangle/Demangle.h
+++ llvm/include/llvm/Demangle/Demangle.h
@@ -83,7 +83,7 @@
bool partialDemangle(const char *MangledName);
/// Just print the entire mangled name into Buf. Buf and N behave like the
- /// second and third parameters to itaniumDemangle.
+ /// second and third parameters to __cxa_demangle.
char *finishDemangle(char *Buf, size_t *N) const;
/// Get the base name of a function. This doesn't include trailing template
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D149975.519913.patch
Type: text/x-patch
Size: 588 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230505/ec284183/attachment.bin>
More information about the llvm-commits
mailing list