diff options
Diffstat (limited to 'aarch64/all.h')
| -rw-r--r-- | aarch64/all.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/aarch64/all.h b/aarch64/all.h deleted file mode 100644 index 828909e..0000000 --- a/aarch64/all.h +++ /dev/null @@ -1,16 +0,0 @@ -#include "../ir/ir.h" - -enum reg { - R0 = 0, -#define R(n) (R0+n) - FP = R(29), LR = R(30), SP = R(31), - V0, -#define V(n) (V0+n) -}; - -bool aarch64_logimm(uint *enc, enum irclass, uvlong x); -void aarch64_isel(struct function *); -void aarch64_emit(struct function *); - -/* vim:set ts=3 sw=3 expandtab: */ - |