diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-04-15 20:13:59 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-04-15 20:13:59 +0000 |
commit | 6e221097ea02e790f6335f3cc60a3983bcfb6ce6 (patch) | |
tree | bd33286d00938529f2060c125897aa208da9e0d4 /llvm/include | |
parent | b349efe6dd5dccf8a611ef3d11f9a30b31088228 (diff) | |
download | bcm5719-llvm-6e221097ea02e790f6335f3cc60a3983bcfb6ce6.tar.gz bcm5719-llvm-6e221097ea02e790f6335f3cc60a3983bcfb6ce6.zip |
Fix silly typo that broke big endian hosts.
llvm-svn: 179551
Diffstat (limited to 'llvm/include')
-rw-r--r-- | llvm/include/llvm/Support/Host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/Host.h b/llvm/include/llvm/Support/Host.h index cba60928908..9a4036a8aff 100644 --- a/llvm/include/llvm/Support/Host.h +++ b/llvm/include/llvm/Support/Host.h @@ -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; |