[libunwind] r282599 - libunwind: Add OpenBSD case for _Unwind_Ptr typedef

Ed Maste via cfe-commits cfe-commits at lists.llvm.org
Wed Sep 28 08:37:21 PDT 2016


Author: emaste
Date: Wed Sep 28 10:37:21 2016
New Revision: 282599

URL: http://llvm.org/viewvc/llvm-project?rev=282599&view=rev
Log:
libunwind: Add OpenBSD case for _Unwind_Ptr typedef

Patch by Mark Kettenis

Modified:
    libunwind/trunk/src/AddressSpace.hpp

Modified: libunwind/trunk/src/AddressSpace.hpp
URL: http://llvm.org/viewvc/llvm-project/libunwind/trunk/src/AddressSpace.hpp?rev=282599&r1=282598&r2=282599&view=diff
==============================================================================
--- libunwind/trunk/src/AddressSpace.hpp (original)
+++ libunwind/trunk/src/AddressSpace.hpp Wed Sep 28 10:37:21 2016
@@ -35,7 +35,7 @@ namespace libunwind {
 #include "Registers.hpp"
 
 #if _LIBUNWIND_ARM_EHABI
-#if defined(__FreeBSD__) || defined(__NetBSD__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
 
 typedef void *_Unwind_Ptr;
 




More information about the cfe-commits mailing list