diff options
author | Cary Coutant <ccoutant@google.com> | 2009-08-24 23:31:45 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2009-08-24 23:31:45 +0000 |
commit | f773f3d2dc0b1b7b95fba4159850e1ddf2834468 (patch) | |
tree | 0dc1b741752b7a26e2fb09c79818915d88c62fca /gold/options.h | |
parent | 676accff0e356cd123b1224d2cb84c8d3ddc6a70 (diff) | |
download | gdb-f773f3d2dc0b1b7b95fba4159850e1ddf2834468.zip gdb-f773f3d2dc0b1b7b95fba4159850e1ddf2834468.tar.gz gdb-f773f3d2dc0b1b7b95fba4159850e1ddf2834468.tar.bz2 |
(General_options::no_keep_memory): Remove incorrect short option.
Diffstat (limited to 'gold/options.h')
-rw-r--r-- | gold/options.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gold/options.h b/gold/options.h index 8d444ca..359866e 100644 --- a/gold/options.h +++ b/gold/options.h @@ -799,8 +799,9 @@ class General_options DEFINE_bool(strip_lto_sections, options::TWO_DASHES, '\0', true, N_("Strip LTO intermediate code sections"), NULL); - DEFINE_bool(no_keep_memory, options::TWO_DASHES, 's', false, - N_("Use less memory and more disk I/O (included only for compatibility with GNU ld)"), NULL); + DEFINE_bool(no_keep_memory, options::TWO_DASHES, '\0', false, + N_("Use less memory and more disk I/O " + "(included only for compatibility with GNU ld)"), NULL); DEFINE_bool(shared, options::ONE_DASH, '\0', false, N_("Generate shared library"), NULL); |