diff options
author | Quentin Carbonneaux <quentin@c9x.me> | 2022-10-03 11:08:05 +0200 |
---|---|---|
committer | Quentin Carbonneaux <quentin@c9x.me> | 2022-10-08 21:48:47 +0200 |
commit | b03a8970d7b73959397f0ca5c8f2a532c1905e5d (patch) | |
tree | 028eb6726e95352c54b1911abbe609ef3a26bc6f /arm64/all.h | |
parent | a7e1602252be24f51afa3dc66e3adc2b88d1e0c1 (diff) | |
download | roux-b03a8970d7b73959397f0ca5c8f2a532c1905e5d.tar.gz |
mark apple targets with a boolean
It is more natural to branch on a flag than have different function pointers for high-level passes.
Diffstat (limited to 'arm64/all.h')
-rw-r--r-- | arm64/all.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arm64/all.h b/arm64/all.h index 6b7f43e..49f5d86 100644 --- a/arm64/all.h +++ b/arm64/all.h @@ -29,7 +29,6 @@ bits arm64_retregs(Ref, int[2]); bits arm64_argregs(Ref, int[2]); void arm64_abi(Fn *); void apple_extsb(Fn *); -void apple_abi(Fn *); /* isel.c */ int arm64_logimm(uint64_t, int); @@ -37,4 +36,3 @@ void arm64_isel(Fn *); /* emit.c */ void arm64_emitfn(Fn *, FILE *); -void apple_emitfn(Fn *, FILE *); |