From 2e779d781e7fc15c258e87224ae95efdd452ffa3 Mon Sep 17 00:00:00 2001 From: Moritz Angermann Date: Thu, 18 Feb 2021 16:22:41 +0800 Subject: [mach-o] make prototypes match functions --- rts/linker/MachO.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rts/linker/MachO.c b/rts/linker/MachO.c index 8928da6dee..0b7b7957f7 100644 --- a/rts/linker/MachO.c +++ b/rts/linker/MachO.c @@ -52,8 +52,8 @@ */ int64_t signExtend(uint64_t val, uint8_t bits); /* Helper functions to check some instruction properties */ -bool isVectorOp(uint32_t *p); -bool isLoadStore(uint32_t *p); +static bool isVectorOp(uint32_t *p); +static bool isLoadStore(uint32_t *p); /* aarch64 relocations may contain an addend alreay in the position * where we want to write the address offset to. Thus decoding as well -- cgit v1.2.1