summaryrefslogtreecommitdiff
path: root/crypto/bf/blowfish.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/bf/blowfish.h')
-rw-r--r--crypto/bf/blowfish.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/crypto/bf/blowfish.h b/crypto/bf/blowfish.h
index 50787eda09..1eda3745d6 100644
--- a/crypto/bf/blowfish.h
+++ b/crypto/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...
- * <appro@fy.chalmers.se>
- */
#else
#define BF_LONG unsigned int
#endif