Fix S390 big endian detection
authorMehdi Amini <mehdi.amini@apple.com>
Fri, 1 Apr 2016 05:12:24 +0000 (05:12 +0000)
committerMehdi Amini <mehdi.amini@apple.com>
Fri, 1 Apr 2016 05:12:24 +0000 (05:12 +0000)
From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 265109

llvm/lib/Support/SHA1.cpp

index 50fa698..980c3bb 100644 (file)
 //
 //===----------------------------------------------------------------------===//
 
+#include "llvm/Support/Host.h"
 #include "llvm/Support/SHA1.h"
 using namespace llvm;
 
 #include <stdint.h>
 #include <string.h>
 
-#ifdef __BIG_ENDIAN__
+#if defined(BYTE_ORDER) && defined(BIG_ENDIAN) && BYTE_ORDER == BIG_ENDIAN
 #define SHA_BIG_ENDIAN
 #endif
 
@@ -113,7 +114,7 @@ void SHA1::update(ArrayRef<uint8_t> Data) {
 }
 
 void SHA1::pad() {
-  // Implement SHA-1 padding (fips180-2 ยง5.1.1)
+  // Implement SHA-1 padding (fips180-2 5.1.1)
 
   // Pad with 0x80 followed by 0x00 until the end of the block
   addUncounted(0x80);