summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2016-02-14 16:15:41 -0500
committerRich Salz <rsalz@openssl.org>2016-02-14 16:36:41 -0500
commit795e1231738ccebecfa031ecc4da75fcdd4ffc0a (patch)
tree82722e3fb8bf954e9f4b9d1013f387cbb37fe236 /test
parent31305cdf9f5648a18c5a12854b08df7c9e4069fc (diff)
downloadopenssl-new-795e1231738ccebecfa031ecc4da75fcdd4ffc0a.tar.gz
Don't call cpuid in test; done as init.
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'test')
-rw-r--r--test/rc4test.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/rc4test.c b/test/rc4test.c
index 68f1641180..7de091c3bd 100644
--- a/test/rc4test.c
+++ b/test/rc4test.c
@@ -120,12 +120,6 @@ int main(int argc, char *argv[])
RC4_KEY key;
unsigned char obuf[512];
-# if !defined(OPENSSL_PIC)
- void OPENSSL_cpuid_setup(void);
-
- OPENSSL_cpuid_setup();
-# endif
-
for (i = 0; i < 6; i++) {
RC4_set_key(&key, keys[i][0], &(keys[i][1]));
memset(obuf, 0, sizeof(obuf));