Skip to content

Commit a70565f

Browse files
ian-twilightcodertru
authored andcommitted
[libunwind][Modules] Add unwind_arm_ehabi.h and unwind_itanium.h to the unwind module)
Add unwind_arm_ehabi.h and unwind_itanium.h to the unwind module and use angle includes to include them. Reviewed By: ldionne, #libunwind Differential Revision: https://reviews.llvm.org/D144323 (cherry picked from commit 1187d8a)
1 parent 56edf06 commit a70565f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

libunwind/include/libunwind.modulemap

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,8 @@ module libunwind [system] {
66
module unwind [system] {
77
header "__libunwind_config.h"
88
header "unwind.h"
9+
private textual header "unwind_arm_ehabi.h"
10+
private textual header "unwind_itanium.h"
11+
912
export *
1013
}

libunwind/include/unwind.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ typedef enum {
5656
typedef struct _Unwind_Context _Unwind_Context; // opaque
5757

5858
#if defined(_LIBUNWIND_ARM_EHABI)
59-
#include "unwind_arm_ehabi.h"
59+
#include <unwind_arm_ehabi.h>
6060
#else
61-
#include "unwind_itanium.h"
61+
#include <unwind_itanium.h>
6262
#endif
6363

6464
typedef _Unwind_Reason_Code (*_Unwind_Stop_Fn)

0 commit comments

Comments
 (0)