[llvm-commits] [compiler-rt] r85726 - /compiler-rt/trunk/lib/endianness.h
Edward O'Callaghan
eocallaghan at auroraux.org
Sun Nov 1 10:25:55 PST 2009
Author: evocallaghan
Date: Sun Nov 1 12:25:55 2009
New Revision: 85726
URL: http://llvm.org/viewvc/llvm-project?rev=85726&view=rev
Log:
Fix DragonFly BSD define in compiler-rt.
Modified:
compiler-rt/trunk/lib/endianness.h
Modified: compiler-rt/trunk/lib/endianness.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/endianness.h?rev=85726&r1=85725&r2=85726&view=diff
==============================================================================
--- compiler-rt/trunk/lib/endianness.h (original)
+++ compiler-rt/trunk/lib/endianness.h Sun Nov 1 12:25:55 2009
@@ -36,7 +36,7 @@
/* .. */
-#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonflyBSD__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
#include <sys/endian.h>
#if _BYTE_ORDER == _BIG_ENDIAN
More information about the llvm-commits
mailing list