From e62e967377ab6a2d1848e5a9f61e1dbe5416e989 Mon Sep 17 00:00:00 2001 From: Amir Ayupov Date: Sat, 27 Apr 2024 09:56:43 -0700 Subject: [PATCH] Add CFI and symbol information for basemul_avx --- avx2/basemul.S | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/avx2/basemul.S b/avx2/basemul.S index 36990639..4f3550f6 100644 --- a/avx2/basemul.S +++ b/avx2/basemul.S @@ -84,7 +84,9 @@ vmovdqa %ymm11,(64*\off+48)*2(%rdi) .text .global cdecl(basemul_avx) +.type cdecl(basemul_avx), @function cdecl(basemul_avx): +.cfi_startproc mov %rsp,%r8 and $-32,%rsp sub $32,%rsp @@ -103,3 +105,5 @@ schoolbook 3 mov %r8,%rsp ret +.cfi_endproc +.size cdecl(basemul_avx), .-cdecl(basemul_avx)