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 | c9363ef67a5716a282bd7b4810c61da522bb7fd9 (patch) | |
tree | 73d84ff87bc05001686977a32b0c0957d29a6415 /include/llvm/Support/Host.h | |
parent | 92b0d0ec4f9fa33de80373de504b00fef06f5be1 (diff) |
Fix silly typo that broke big endian hosts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179551 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Host.h')
-rw-r--r-- | include/llvm/Support/Host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/Host.h b/include/llvm/Support/Host.h index cba6092890..9a4036a8af 100644 --- a/include/llvm/Support/Host.h +++ b/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; |