diff options
author | Ian Lance Taylor <ian@airs.com> | 2008-05-06 20:40:33 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2008-05-06 20:40:33 +0000 |
commit | 2b706932eef86b25a7a833b0e3136d3a0429bfab (patch) | |
tree | 68b555495b758030762b0aeed60bc9119dc98002 /gold/options.cc | |
parent | b1e6fd1961bf6906b9990e2a260f410b6b474272 (diff) | |
download | gdb-2b706932eef86b25a7a833b0e3136d3a0429bfab.zip gdb-2b706932eef86b25a7a833b0e3136d3a0429bfab.tar.gz gdb-2b706932eef86b25a7a833b0e3136d3a0429bfab.tar.bz2 |
* options.h (DEFINE_var): Add set_user_set_##varname__.
(DEFINE_bool_alias): New macro.
(class General_options): Define -Bstatic using DEFINE_bool_alias
rather than DEFINE_special. Add --undefined as an alias for -z
defs.
* options.cc (General_options::parse_Bstatic): Remove.
Diffstat (limited to 'gold/options.cc')
-rw-r--r-- | gold/options.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gold/options.cc b/gold/options.cc index af024b5..8d18c11 100644 --- a/gold/options.cc +++ b/gold/options.cc @@ -282,12 +282,6 @@ General_options::parse_V(const char*, const char*, Command_line*) } void -General_options::parse_Bstatic(const char*, const char*, Command_line*) -{ - this->set_Bdynamic(false); -} - -void General_options::parse_defsym(const char*, const char* arg, Command_line* cmdline) { |