summary refs log tree commit diff
path: root/arm64
diff options
context:
space:
mode:
authorAlexey Yerin <yyp@disroot.org>2023-02-23 17:10:19 +0300
committerQuentin Carbonneaux <quentin@c9x.me>2023-03-11 21:56:45 +0100
commit7410f90629d56d75c1410724626e6abad8418b23 (patch)
treee0d107d6f00c5c90c6c7c7f0233ee96fc901646a /arm64
parent9632f2f148bf545fea09f25f34a316ec8ae86256 (diff)
downloadroux-7410f90629d56d75c1410724626e6abad8418b23.tar.gz
Emit .type and .size directives on RISC-V and ARM
To match x86
Diffstat (limited to 'arm64')
-rw-r--r--arm64/emit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arm64/emit.c b/arm64/emit.c
index 5113c66..ee1593f 100644
--- a/arm64/emit.c
+++ b/arm64/emit.c
@@ -636,4 +636,6 @@ arm64_emitfn(Fn *fn, FILE *out)
 		}
 	}
 	id0 += e->fn->nblk;
+	if (!T.apple)
+		elf_emitfnfin(fn->name, out);
 }