1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

Fix silly typo that broke big endian hosts.

llvm-svn: 179551
This commit is contained in:
Rafael Espindola 2013-04-15 20:13:59 +00:00
parent 9cf2c1eeb5
commit 0c8ccca49b

View File

@ -29,7 +29,7 @@
namespace llvm {
namespace sys {
#if defined(BYTBYTE_ORDER) && defined(BIG_ENDIAN) && BYTE_ORDER == BIG_ENDIAN
#if defined(BYTE_ORDER) && defined(BIG_ENDIAN) && BYTE_ORDER == BIG_ENDIAN
static const bool IsBigEndianHost = true;
#else
static const bool IsBigEndianHost = false;