summaryrefslogtreecommitdiff
path: root/nasm.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2003-08-29 19:25:46 +0000
committerH. Peter Anvin <hpa@zytor.com>2003-08-29 19:25:46 +0000
commit9173ab99615f9b7592d9eb160123a95fc07beb45 (patch)
tree901e8f5f5cb057417d578cbf99742b013758cd7e /nasm.c
parent16b929515e71df6069aa2fcc440b43f9b8820ebc (diff)
downloadnasm-9173ab99615f9b7592d9eb160123a95fc07beb45.tar.gz
nasm-9173ab99615f9b7592d9eb160123a95fc07beb45.tar.bz2
nasm-9173ab99615f9b7592d9eb160123a95fc07beb45.zip
Update documentation slightly; remove weird special-casing of -O2 and -O3
Diffstat (limited to 'nasm.c')
-rw-r--r--nasm.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/nasm.c b/nasm.c
index cdc936b..e8bc680 100644
--- a/nasm.c
+++ b/nasm.c
@@ -403,7 +403,6 @@ static int process_arg (char *p, char *q)
while(isdigit(*++param)) ;
if (opt<=0) optimizing = -1; /* 0.98 behaviour */
else if (opt==1) optimizing = 0; /* Two passes, 0.98.09 behavior */
- else if (opt<=3) optimizing = opt*5; /* Multiple passes */
else optimizing = opt; /* Multiple passes */
} else {
if (*param == 'v' || *param == '+') {