Fix pre-processor mistake for BSDs in endianness.h

llvm-svn: 79330
This commit is contained in:
Edward O'Callaghan 2009-08-18 11:07:59 +00:00
parent 7864b9ea0c
commit ea0bd0d0a4
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@
/* .. */
#if defined(__FreeBSD__) && defined(__NetBSD__) && defined(__OpenBSD__) && defined(__DragonflyBSD__)
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonflyBSD__)
#include <sys/endian.h>
#if _BYTE_ORDER == _BIG_ENDIAN

View File

@ -36,7 +36,7 @@
/* .. */
#if defined(__FreeBSD__) && defined(__NetBSD__) && defined(__OpenBSD__) && defined(__DragonflyBSD__)
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonflyBSD__)
#include <sys/endian.h>
#if _BYTE_ORDER == _BIG_ENDIAN