diff options
| author | 2023-06-06 15:08:46 +0200 | |
|---|---|---|
| committer | 2023-06-06 15:08:46 +0200 | |
| commit | 86625b1166bd39e28b4dd4995ed6cd88c0bdde7e (patch) | |
| tree | 2bfd67ddc7e3b4bb4c4a3d951dfc80fac7c4bad3 /amd64/all.h | |
| parent | 3388975ee3a0814e9c95863035ab0d122174c549 (diff) | |
codegen skeleton
Diffstat (limited to 'amd64/all.h')
| -rw-r--r-- | amd64/all.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/amd64/all.h b/amd64/all.h index 915d93a..b8bb699 100644 --- a/amd64/all.h +++ b/amd64/all.h @@ -6,10 +6,12 @@ _(XMM0) _(XMM1) _(XMM2) _(XMM3) _(XMM4) _(XMM5) _(XMM6) _(XMM7) \ _(XMM8) _(XMM9) _(XMM10) _(XMM11) _(XMM12) _(XMM13) _(XMM14) _(XMM15) -enum { +enum reg { #define R(r) r, LIST_REGS(R) #undef R }; +void amd64_emit(struct function *); + /* vim:set ts=3 sw=3 expandtab: */ |