[PATCH] D35709: Remove Bitrig: CompilerRT Changes
Erich Keane via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jul 21 15:48:29 PDT 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL308798: Remove Bitrig: CompilerRT Changes (authored by erichkeane).
Changed prior to commit:
https://reviews.llvm.org/D35709?vs=107606&id=107742#toc
Repository:
rL LLVM
https://reviews.llvm.org/D35709
Files:
compiler-rt/trunk/lib/builtins/clear_cache.c
compiler-rt/trunk/lib/builtins/int_endianness.h
compiler-rt/trunk/test/builtins/Unit/endianness.h
Index: compiler-rt/trunk/lib/builtins/int_endianness.h
===================================================================
--- compiler-rt/trunk/lib/builtins/int_endianness.h
+++ compiler-rt/trunk/lib/builtins/int_endianness.h
@@ -61,7 +61,7 @@
#endif /* *BSD */
-#if defined(__OpenBSD__) || defined(__Bitrig__)
+#if defined(__OpenBSD__)
#include <machine/endian.h>
#if _BYTE_ORDER == _BIG_ENDIAN
@@ -72,7 +72,7 @@
#define _YUGA_BIG_ENDIAN 0
#endif /* _BYTE_ORDER */
-#endif /* OpenBSD and Bitrig. */
+#endif /* OpenBSD */
/* .. */
Index: compiler-rt/trunk/lib/builtins/clear_cache.c
===================================================================
--- compiler-rt/trunk/lib/builtins/clear_cache.c
+++ compiler-rt/trunk/lib/builtins/clear_cache.c
@@ -23,7 +23,7 @@
uintptr_t GetCurrentProcess(void);
#endif
-#if (defined(__FreeBSD__) || defined(__Bitrig__)) && defined(__arm__)
+#if defined(__FreeBSD__) && defined(__arm__)
#include <sys/types.h>
#include <machine/sysarch.h>
#endif
@@ -96,7 +96,7 @@
* so there is nothing to do
*/
#elif defined(__arm__) && !defined(__APPLE__)
- #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__Bitrig__)
+ #if defined(__FreeBSD__) || defined(__NetBSD__)
struct arm_sync_icache_args arg;
arg.addr = (uintptr_t)start;
Index: compiler-rt/trunk/test/builtins/Unit/endianness.h
===================================================================
--- compiler-rt/trunk/test/builtins/Unit/endianness.h
+++ compiler-rt/trunk/test/builtins/Unit/endianness.h
@@ -51,7 +51,7 @@
/* .. */
-#if defined(__OpenBSD__) || defined(__Bitrig__)
+#if defined(__OpenBSD__)
#include <machine/endian.h>
#if _BYTE_ORDER == _BIG_ENDIAN
@@ -62,7 +62,7 @@
#define _YUGA_BIG_ENDIAN 0
#endif /* _BYTE_ORDER */
-#endif /* OpenBSD and Bitrig. */
+#endif /* OpenBSD */
/* .. */
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D35709.107742.patch
Type: text/x-patch
Size: 1879 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20170721/847656d5/attachment.bin>
More information about the cfe-commits
mailing list