[PATCH] D35709: Remove Bitrig: CompilerRT Changes
Erich Keane via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 20 16:35:47 PDT 2017
erichkeane created this revision.
Bitrig code has been merged back to OpenBSD, thus the OS has been abandoned.
https://reviews.llvm.org/D35709
Files:
lib/builtins/clear_cache.c
lib/builtins/int_endianness.h
test/builtins/Unit/endianness.h
Index: test/builtins/Unit/endianness.h
===================================================================
--- test/builtins/Unit/endianness.h
+++ 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 */
/* .. */
Index: lib/builtins/int_endianness.h
===================================================================
--- lib/builtins/int_endianness.h
+++ 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: lib/builtins/clear_cache.c
===================================================================
--- lib/builtins/clear_cache.c
+++ 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;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D35709.107606.patch
Type: text/x-patch
Size: 1717 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20170720/9c7ec1fe/attachment.bin>
More information about the cfe-commits
mailing list