[libcxx-commits] [PATCH] D77606: [libcxxabi] Add macro for changing functions to support the relative vtables ABI
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Nov 25 12:08:04 PST 2020
ldionne requested changes to this revision.
ldionne added inline comments.
This revision now requires changes to proceed.
================
Comment at: libcxxabi/src/private_typeinfo.cpp:643
+#else
+ void** vtable = *static_cast<void** const*>(static_ptr);
+ ptrdiff_t offset_to_derived = reinterpret_cast<ptrdiff_t>(vtable[-2]);
----------------
Can you avoid changing the formatting of this piece of code to make it clear it's unchanged?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77606/new/
https://reviews.llvm.org/D77606
More information about the libcxx-commits
mailing list