diff options
author | Andy Polyakov <appro@openssl.org> | 2005-05-31 13:07:27 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2005-05-31 13:07:27 +0200 |
commit | f8bc3e1bd842752edfe5d6fb9449a223167124e9 (patch) | |
tree | f9a4522d3803f65f3fc4ae97dd71e91b7a18aded /ms | |
parent | Platform update from 8-stable. (diff) | |
download | openssl-f8bc3e1bd842752edfe5d6fb9449a223167124e9.tar.xz openssl-f8bc3e1bd842752edfe5d6fb9449a223167124e9.zip |
Platform update from 8-stable.
Diffstat (limited to 'ms')
-rwxr-xr-x | ms/uplink.pl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ms/uplink.pl b/ms/uplink.pl index 5dacc4f1a1..102400e880 100755 --- a/ms/uplink.pl +++ b/ms/uplink.pl @@ -168,23 +168,23 @@ _DATA SEGMENT PUBLIC OPENSSL_UplinkTable OPENSSL_UplinkTable DQ $N ___ -for ($i=1;$i<=$N;$i++) { print " DQ FLAT:\$lazy$i\n"; } +for ($i=1;$i<=$N;$i++) { print " DQ \$lazy$i\n"; } print <<___; _DATA ENDS -TEXT SEGMENT -EXTERN OPENSSL_Uplink:NEAR +_TEXT SEGMENT +EXTERN OPENSSL_Uplink:PROC ___ for ($i=1;$i<=$N;$i++) { print <<___; ALIGN 4 -\$lazy$i PROC NEAR +\$lazy$i PROC push r9 push r8 push rdx push rcx sub rsp,40 - mov rcx,OFFSET FLAT:OPENSSL_UplinkTable + lea rcx,OFFSET OPENSSL_UplinkTable mov rdx,$i call OPENSSL_Uplink add rsp,40 @@ -197,7 +197,7 @@ ALIGN 4 ___ } print <<___; -TEXT ENDS +_TEXT ENDS END ___ } |