From: Rafael Espindola Date: Mon, 15 Apr 2013 20:13:59 +0000 (+0000) Subject: Fix silly typo that broke big endian hosts. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c9363ef67a5716a282bd7b4810c61da522bb7fd9;p=oota-llvm.git 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 --- diff --git a/include/llvm/Support/Host.h b/include/llvm/Support/Host.h index cba60928908..9a4036a8aff 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;