This revision was automatically updated to reflect the committed changes.
Closed by commit rL329629: [CFI] Disable CFI checks for
__cxa_decrement_exception_refcount (authored by vlad.tsyrklevich, committed by
).
Herald added a subscriber: llvm-commits.
Repository:
rL LLVM
https://reviews.llvm
This revision was automatically updated to reflect the committed changes.
Closed by commit rCXXA329629: [CFI] Disable CFI checks for
__cxa_decrement_exception_refcount (authored by vlad.tsyrklevich, committed by
).
Changed prior to commit:
https://reviews.llvm.org/D45455?vs=141733&id=141752#to
vlad.tsyrklevich created this revision.
Herald added subscribers: cfe-commits, christof.
exception_header->exceptionDestructor is a void(*)(void*) function
pointer; however, it can point to destructors like std::
exception::~exception that don't match that type signature.
Repository:
rCXXA lib