Skip to content

Commit

Permalink
Fix silly typo that broke big endian hosts.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179551 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
espindola committed Apr 15, 2013
1 parent 92b0d0e commit c9363ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/llvm/Support/Host.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c9363ef

Please sign in to comment.