[llvm] r179551 - Fix silly typo that broke big endian hosts.

Rafael Espindola rafael.espindola at gmail.com
Mon Apr 15 13:13:59 PDT 2013


Author: rafael
Date: Mon Apr 15 15:13:59 2013
New Revision: 179551

URL: http://llvm.org/viewvc/llvm-project?rev=179551&view=rev
Log:
Fix silly typo that broke big endian hosts.

Modified:
    llvm/trunk/include/llvm/Support/Host.h

Modified: llvm/trunk/include/llvm/Support/Host.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Host.h?rev=179551&r1=179550&r2=179551&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Host.h (original)
+++ llvm/trunk/include/llvm/Support/Host.h Mon Apr 15 15:13:59 2013
@@ -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;





More information about the llvm-commits mailing list