From aa8f085033b21b0ec0b70c18909ba27ef8752e51 Mon Sep 17 00:00:00 2001 From: miod <> Date: Thu, 17 Apr 2014 21:17:12 +0000 Subject: Get rid of MS Visual C compiler and Intel C compiler specific defines. --- src/lib/libcrypto/rc2/rc2_skey.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/lib/libcrypto/rc2/rc2_skey.c') diff --git a/src/lib/libcrypto/rc2/rc2_skey.c b/src/lib/libcrypto/rc2/rc2_skey.c index 26b8dd63f6..56e47845a4 100644 --- a/src/lib/libcrypto/rc2/rc2_skey.c +++ b/src/lib/libcrypto/rc2/rc2_skey.c @@ -85,10 +85,6 @@ static const unsigned char key_table[256]={ 0xfe,0x7f,0xc1,0xad, }; -#if defined(_MSC_VER) && defined(_ARM_) -#pragma optimize("g",off) -#endif - /* It has come to my attention that there are 2 versions of the RC2 * key schedule. One which is normal, and anther which has a hook to * use a reduced key length. @@ -140,7 +136,3 @@ void RC2_set_key(RC2_KEY *key, int len, const unsigned char *data, int bits) for (i=127; i>=0; i-=2) *(ki--)=((k[i]<<8)|k[i-1])&0xffff; } - -#if defined(_MSC_VER) -#pragma optimize("",on) -#endif -- cgit v1.2.3-55-g6feb