aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2018-12-20 15:25:42 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2018-12-20 15:25:42 +0800
commit8aae0fa578a8b5124c97fe81f7a21cf3c67fe7c0 (patch)
treed5fc167284cceb1d99e1bf8676195a62a9bc06d2
parent17dd5b9a9aca3a91bb6ef03f4f70b7aa5ec7ad55 (diff)
downloaddexon-mcl-8aae0fa578a8b5124c97fe81f7a21cf3c67fe7c0.tar.gz
dexon-mcl-8aae0fa578a8b5124c97fe81f7a21cf3c67fe7c0.tar.zst
dexon-mcl-8aae0fa578a8b5124c97fe81f7a21cf3c67fe7c0.zip
remove -O0 option
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 348a6b7..dce4d54 100644
--- a/Makefile
+++ b/Makefile
@@ -199,7 +199,7 @@ else
endif
$(GEN_EXE): src/gen.cpp src/llvm_gen.hpp
- $(CXX) -o $@ $< $(CFLAGS) -O0
+ $(CXX) -o $@ $< $(CFLAGS)
asm: $(LLVM_SRC)
$(LLVM_OPT) -O3 -o - $(LLVM_SRC) | $(LLVM_LLC) -O3 $(LLVM_FLAGS) -x86-asm-syntax=intel