From 180441f09a75db6748db9c7de8da35437f39e402 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Fri, 1 Apr 2016 05:12:24 +0000 Subject: Fix S390 big endian detection From: Mehdi Amini llvm-svn: 265109 --- llvm/lib/Support/SHA1.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'llvm/lib') diff --git a/llvm/lib/Support/SHA1.cpp b/llvm/lib/Support/SHA1.cpp index 50fa698a4be..980c3bbffac 100644 --- a/llvm/lib/Support/SHA1.cpp +++ b/llvm/lib/Support/SHA1.cpp @@ -13,13 +13,14 @@ // //===----------------------------------------------------------------------===// +#include "llvm/Support/Host.h" #include "llvm/Support/SHA1.h" using namespace llvm; #include #include -#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 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); -- cgit v1.2.3