]> git.ipfire.org Git - thirdparty/openssl.git/commit
MASM: Need to strip arguments after .pdata or .xdata
authorKelvin Lee <kiyolee@gmail.com>
Mon, 24 Jun 2024 11:09:03 +0000 (21:09 +1000)
committerTomas Mraz <tomas@openssl.org>
Wed, 26 Jun 2024 10:03:45 +0000 (12:03 +0200)
commit0169bbbd1ce94ea703d5561b30f0e41bb54520a6
treedac2ae5e1719b35e0299e6e0c3c7ceb956a2aa10
parent55c1458303c0fef88e4b2b35a090e9145f3e07eb
MASM: Need to strip arguments after .pdata or .xdata

For MASM,

.section .pdata,"r"

got translated to:

.pdata,"r"    SEGMENT READONLY ALIGN(4)

that breaks ml64.
Previous version of x86_64-xlate.pl did strip that ',"r"'.

CLA: trivial

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Sasa Nedvedicky <sashan@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24714)
crypto/perlasm/x86_64-xlate.pl