diff options
author | Camil Staps | 2021-01-08 11:38:53 +0100 |
---|---|---|
committer | Camil Staps | 2021-01-08 11:38:53 +0100 |
commit | ddd7381828ef7c791867917f2eb32e9cba66079f (patch) | |
tree | f276b2827f310974befe2e035271dc11fb38e4ad /Makefile | |
parent | Add annotations in nfib_nsa (diff) |
WIP: cleanup global A stack after evaluation in jsr_eval
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -20,7 +20,12 @@ $(BC): %.bc: %.opt.ll llvm-as-11 $^ -o $@ $(OPTLL): %.opt.ll: $(DEPS) %.ll - cat $^ | opt-11 -S -O3 -o $@ + cat $^ \ + | opt-11 -S -always-inline \ + | opt-11 -S -O3 \ + | sed 's/noinline nounwind optnone/nounwind/' \ + | opt-11 -S -O3 \ + -o $@ clean: $(RM) $(BIN) $(OBJ) $(ASM) $(BC) |