summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-10-19 13:16:51 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-10-19 13:16:51 -0700
commit487a0870663423ec66425da47a73c4175410b1e7 (patch)
tree89ecaa73a28a1932766a1c0c1fac562eb3adaac7
parent361584882e208c7f23dfc0c1e3a1c3ee8db2943d (diff)
downloadnasm-487a0870663423ec66425da47a73c4175410b1e7.tar.gz
test/Makefile: Use -Ox instead of -O999
-rw-r--r--test/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 64b65231..cc11f0e4 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,7 +1,7 @@
.SUFFIXES: .bin .o .o64 .obj .obj64 .exe .asm .lst .pl
NASM = ../nasm
-NASMOPT = -O999 -I../misc
+NASMOPT = -Ox -I../misc
PERL = perl
%.bin: %.asm $(NASM)