From b8a4f14a0fc6d4be2de52a124e247319774006f5 Mon Sep 17 00:00:00 2001 From: miod <> Date: Wed, 16 Apr 2014 04:38:11 +0000 Subject: Remove _CRAY references. Note that this pleads for the use of fixed-width types instead of choosing int or long depending upon what we think the architecture support. --- src/lib/libcrypto/bf/blowfish.h | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'src/lib/libcrypto/bf') diff --git a/src/lib/libcrypto/bf/blowfish.h b/src/lib/libcrypto/bf/blowfish.h index 65685f478c..289c55b3af 100644 --- a/src/lib/libcrypto/bf/blowfish.h +++ b/src/lib/libcrypto/bf/blowfish.h @@ -81,16 +81,9 @@ extern "C" { #if defined(__LP32__) #define BF_LONG unsigned long -#elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) +#elif defined(__ILP64__) #define BF_LONG unsigned long #define BF_LONG_LOG2 3 -/* - * _CRAY note. I could declare short, but I have no idea what impact - * does it have on performance on none-T3E machines. I could declare - * int, but at least on C90 sizeof(int) can be chosen at compile time. - * So I've chosen long... - * - */ #else #define BF_LONG unsigned int #endif -- cgit v1.2.3-55-g6feb