Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
clang/lib/ASTMatchers/Dynamic/Marshallers.h | ||
---|---|---|
514 ↗ | (On Diff #74103) | Notice that this is 2x slower, because move on unique_ptr resets the move-from side. But it is less likely to have an issue. |
clang/lib/ASTMatchers/Dynamic/Registry.cpp | ||
501 ↗ | (On Diff #74103) | const MatcherDescriptor &Matcher = *M.getValue()? |
clang/lib/ASTMatchers/Dynamic/Marshallers.h | ||
---|---|---|
514 ↗ | (On Diff #74103) | It may be even worse than that because we used to be able to do memcpy, but now, unless llvm is incredibly smart, we're forced to copy one element at a time. I think these lists are at most two elements, though. |