aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.c b/main.c
index 5588543..020fa83 100644
--- a/main.c
+++ b/main.c
@@ -1,6 +1,7 @@
#include <stdio.h>
#include <stdbool.h>
#include <assert.h>
+#include "assemble.h"
#include "compiler.h"
#include "node.h"
#include "regalloc.h"
@@ -40,6 +41,7 @@ int main(int argc, char **argv) {
allocation_delete(alloc);
ir_print(ir, stdout); printf("\n");
+ assemble(ir, stdout);
return result;
}