aboutsummaryrefslogtreecommitdiffhomepage
path: root/amd64/all.h
diff options
context:
space:
mode:
Diffstat (limited to 'amd64/all.h')
-rw-r--r--amd64/all.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/amd64/all.h b/amd64/all.h
deleted file mode 100644
index 992d47e..0000000
--- a/amd64/all.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#include "../ir/ir.h"
-
-#define LIST_REGS(_) \
- _(RAX) _(RCX) _(RDX) _(RBX) _(RSP) _(RBP) _(RSI) _(RDI) \
- _(R8) _(R9) _(R10) _(R11) _(R12) _(R13) _(R14) _(R15) \
- _(XMM0) _(XMM1) _(XMM2) _(XMM3) _(XMM4) _(XMM5) _(XMM6) _(XMM7) \
- _(XMM8) _(XMM9) _(XMM10) _(XMM11) _(XMM12) _(XMM13) _(XMM14) _(XMM15)
-
-enum reg {
-#define R(r) r,
- LIST_REGS(R)
-#undef R
-};
-
-void amd64_isel(struct function *);
-void amd64_emit(struct function *);
-
-/* vim:set ts=3 sw=3 expandtab: */