summaryrefslogtreecommitdiffstats
path: root/crypto/ec/ectest.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-08-08 00:21:49 +0200
committerAndy Polyakov <appro@openssl.org>2005-08-08 00:21:49 +0200
commit0491e05833a139deef5288abf1bcf61cb19b292e (patch)
treeab274099bff13e0e451aa18bfbdb09bb25f222bb /crypto/ec/ectest.c
parentavoid infinite recursion if dynamic engine isn't loaded (diff)
downloadopenssl-0491e05833a139deef5288abf1bcf61cb19b292e.tar.xz
openssl-0491e05833a139deef5288abf1bcf61cb19b292e.zip
Final(?) WinCE update.
Diffstat (limited to 'crypto/ec/ectest.c')
-rw-r--r--crypto/ec/ectest.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/ec/ectest.c b/crypto/ec/ectest.c
index fdca4b4504..df506e1b47 100644
--- a/crypto/ec/ectest.c
+++ b/crypto/ec/ectest.c
@@ -95,6 +95,11 @@ int main(int argc, char * argv[]) { puts("Elliptic curves are disabled."); retur
#include <openssl/rand.h>
#include <openssl/bn.h>
+#if defined(_MSC_VER) && defined(_MIPS_) && _MSC_VER<1300
+/* suppress "too big too optimize" warning */
+#pragma warning(disable:4959)
+#endif
+
#define ABORT do { \
fflush(stdout); \
fprintf(stderr, "%s:%d: ABORT\n", __FILE__, __LINE__); \