[PATCH] D144999: [Clang][MC][MachO]Only emits compact-unwind format for "canonical" personality symbols. For the rest, use DWARFs.

Tim Northover via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Jun 9 01:27:12 PDT 2023


t.p.northover added a comment.

I don't think this handles the no-personality case properly. For example this code leads to a DWARF entry now:

  void bar(int *) noexcept;
  void foo() {
    int arr;
    bar(&arr);
  }


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D144999/new/

https://reviews.llvm.org/D144999



More information about the cfe-commits mailing list