summaryrefslogtreecommitdiffstats
path: root/main/llvm/clang-0002-fix-unwind-header.patch
blob: 30bfaaef0bdaddf5389e7eb493f8f96da7b5fde5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
diff --git a/lib/Headers/unwind.h b/lib/Headers/unwind.h
index 90aca16..ef96969 100644
--- a/lib/Headers/unwind.h
+++ b/lib/Headers/unwind.h
@@ -23,9 +23,6 @@

 /* See "Data Definitions for libgcc_s" in the Linux Standard Base.*/

-#ifndef __CLANG_UNWIND_H
-#define __CLANG_UNWIND_H
-
 #if defined(__APPLE__) && __has_include_next(<unwind.h>)
 /* Darwin (from 11.x on) provide an unwind.h. If that's available,
  * use it. libunwind wraps some of its definitions in #ifdef _GNU_SOURCE,
@@ -53,6 +50,9 @@
 # endif
 #else

+#ifndef __CLANG_UNWIND_H
+#define __CLANG_UNWIND_H
+
 #include <stdint.h>

 #ifdef __cplusplus
@@ -277,6 +277,7 @@ _Unwind_Ptr _Unwind_GetTextRelBase(struct _Unwind_Context *);
 }
 #endif

+#endif /* __CLANG_UNWIND_H */
+
 #endif

-#endif /* __CLANG_UNWIND_H */
--
2.1.4