summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2016-02-09 11:53:11 +0100
committerAndy Polyakov <appro@openssl.org>2016-02-10 12:58:15 +0100
commit27007233db5d6f8b91ed474c4e09dd7014871cc6 (patch)
treec77f69b0008deee2b02c570776bf2ad683bb398c
parentf93aad4a56a1580a109785c2c922fe6b8baf7df9 (diff)
ms/uplink-x86.pl: make it work.OpenSSL_1_0_0-stable
Reviewed-by: Richard Levitte <levitte@openssl.org> (cherry picked from commit 740b2b9a6cf31b02916a4d18f868e8a95934c083)
-rwxr-xr-xms/uplink-x86.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/ms/uplink-x86.pl b/ms/uplink-x86.pl
index 0dffc14fcd..53b998d270 100755
--- a/ms/uplink-x86.pl
+++ b/ms/uplink-x86.pl
@@ -14,11 +14,11 @@ require "uplink-common.pl";
for ($i=1;$i<=$N;$i++) {
&function_begin_B("_\$lazy${i}");
&lea ("eax",&DWP(&label("OPENSSL_UplinkTable")));
- &push ("eax");
&push ($i);
+ &push ("eax");
&call (&label("OPENSSL_Uplink"));
- &add ("esp",8);
&pop ("eax");
+ &add ("esp",4);
&jmp_ptr(&DWP(4*$i,"eax"));
&function_end_B("_\$lazy${i}");
}