From b8260ba554d7d3595350dad95c4b27b0e3373e68 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Thu, 7 Jun 2018 18:22:28 +0200 Subject: [PATCH] Makefile: use -Os instead of -O1 This was left over from debugging. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8af76c44..39dbcddd 100644 --- a/Makefile +++ b/Makefile @@ -79,7 +79,7 @@ build/%.bc: src/examples/% src/examples/%/*.go build/tgo src/runtime/*.go build/ # Compile and optimize bitcode file. build/%.o: build/%.bc - $(OPT) -coro-early -coro-split -coro-elide -O1 -coro-cleanup -o $< $< + $(OPT) -coro-early -coro-split -coro-elide -Os -coro-cleanup -o $< $< $(LLC) -filetype=obj -o $@ $< # Compile C sources for the runtime.