[PATCH] D119177: [demangler] Fix buffer growth
Nathan Sidwell via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 9 08:38:41 PST 2022
urnathan marked an inline comment as done.
urnathan added inline comments.
================
Comment at: libcxxabi/src/demangle/Utility.h:42
+ if (Need > BufferCapacity) {
+ // Avoid many reallocations during startup
+ constexpr size_t MinAlloc = 1024;
----------------
I've noticed the missing full stop on the comment.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D119177/new/
https://reviews.llvm.org/D119177
More information about the llvm-commits
mailing list