diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2012-03-11 14:19:17 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2012-03-11 14:19:17 +0400 |
commit | 5bc6d8e44d40fe0f6e93e69b5c383f487726dee2 (patch) | |
tree | ad0a46c7741ab64d1f75b765764d46545cdae29e /nasm.c | |
parent | 1a42fb28a1c01449223b01424370cc3f63d32473 (diff) | |
download | nasm-5bc6d8e44d40fe0f6e93e69b5c383f487726dee2.tar.gz nasm-5bc6d8e44d40fe0f6e93e69b5c383f487726dee2.tar.bz2 nasm-5bc6d8e44d40fe0f6e93e69b5c383f487726dee2.zip |
help: Print that -Ox is a default optimization level
Reported-by: Frank Kotler <fbkotler@myfairpoint.net>
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'nasm.c')
-rw-r--r-- | nasm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -795,9 +795,9 @@ static bool process_arg(char *p, char *q) " -I<path> adds a pathname to the include file path\n"); printf (" -O<digit> optimize branch offsets\n" - " -O0: No optimization (default)\n" + " -O0: No optimization\n" " -O1: Minimal optimization\n" - " -Ox: Multipass optimization (recommended)\n\n" + " -Ox: Multipass optimization (default)\n\n" " -P<file> pre-includes a file\n" " -D<macro>[=<value>] pre-defines a macro\n" " -U<macro> undefines a macro\n" |