[PATCH] D111703: [ARM] __cxa_end_cleanup should be called instead of _UnwindResume.
Logan Chien via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 13 19:34:15 PDT 2021
logan added inline comments.
================
Comment at: llvm/lib/CodeGen/DwarfEHPrepare.cpp:82
+ bool isTargetEHABICompatible(Triple TargetTriple) const {
+ return (TargetTriple.getEnvironment() == Triple::EABI ||
----------------
Maybe it makes more sense to define this function as a member function of the `Triple` class?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111703/new/
https://reviews.llvm.org/D111703
More information about the llvm-commits
mailing list