diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2018-12-20 15:25:42 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2018-12-20 15:25:42 +0800 |
commit | 8aae0fa578a8b5124c97fe81f7a21cf3c67fe7c0 (patch) | |
tree | d5fc167284cceb1d99e1bf8676195a62a9bc06d2 | |
parent | 17dd5b9a9aca3a91bb6ef03f4f70b7aa5ec7ad55 (diff) | |
download | dexon-mcl-8aae0fa578a8b5124c97fe81f7a21cf3c67fe7c0.tar.gz dexon-mcl-8aae0fa578a8b5124c97fe81f7a21cf3c67fe7c0.tar.zst dexon-mcl-8aae0fa578a8b5124c97fe81f7a21cf3c67fe7c0.zip |
remove -O0 option
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |