diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2009-07-31 10:26:55 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2009-07-31 10:26:55 +0400 |
commit | 73b87c68b1b2bc8d4b711b87d25850c98aecdda8 (patch) | |
tree | ecb63680af937c5676144f4c4aedb94f516fd046 /nasm.c | |
parent | e873c9b16b2d1e1951897a6e7842d6c406166ad3 (diff) | |
download | nasm-73b87c68b1b2bc8d4b711b87d25850c98aecdda8.tar.gz nasm-73b87c68b1b2bc8d4b711b87d25850c98aecdda8.tar.bz2 nasm-73b87c68b1b2bc8d4b711b87d25850c98aecdda8.zip |
nasm.c -- update info on -O cmdline option
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'nasm.c')
-rw-r--r-- | nasm.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -778,7 +778,10 @@ static bool process_arg(char *p, char *q) " -F format select a debugging format\n\n" " -I<path> adds a pathname to the include file path\n"); printf - (" -O<digit> optimize branch offsets (-O0 disables, default)\n" + (" -O<digit> optimize branch offsets\n" + " -O0: No optimisation (default)\n" + " -O1: Minimal optimization\n" + " -Ox: Multipass optimization (recommended)\n\n" " -P<file> pre-includes a file\n" " -D<macro>[=<value>] pre-defines a macro\n" " -U<macro> undefines a macro\n" |