diff options
Diffstat (limited to 'rts/linker/MachO.c')
-rw-r--r-- | rts/linker/MachO.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/linker/MachO.c b/rts/linker/MachO.c index b17279d514..f301f0a340 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 already in the position * where we want to write the address offset to. Thus decoding as well |