[PATCH] D33878: Handle NetBSD specific _Unwind_Ptr

Kamil Rytarowski via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 8 14:05:13 PDT 2017


krytarowski added inline comments.


================
Comment at: lib/builtins/gcc_personality_v0.c:27
 
+#if defined(__NetBSD__)
+#define TYPE_UNWIND_PTR void*
----------------
This line must be `defined(__NetBSD__) && !defined(__clang__)` as the failure is GCC specific. Clang uses custom `unwind.h` header.


Repository:
  rL LLVM

https://reviews.llvm.org/D33878





More information about the llvm-commits mailing list