]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
ec: Drop uses of .cfi_startproc/.cfi_endproc pseudo-ops
authorMartin Schwenke <martin@meltin.net>
Thu, 17 Jun 2021 02:15:35 +0000 (12:15 +1000)
committerPauli <pauli@openssl.org>
Tue, 22 Jun 2021 08:30:17 +0000 (18:30 +1000)
These work fine on Linux but break the build on AIX.

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15798)

crypto/ec/asm/ecp_nistp521-ppc64.pl

index 7e71e924ba8ab096c6403cc5a75420149fec64f4..e76d974f8d125022f02187483ac88176b949af02 100755 (executable)
@@ -46,7 +46,6 @@ sub startproc($)
     $code.=<<___;
     .globl ${name}
 ${name}:
-       .cfi_startproc
 
 ___
 }
@@ -57,7 +56,6 @@ sub endproc($)
 
     $code.=<<___;
        blr
-       .cfi_endproc
            .size       ${name},.-${name}
 
 ___