diff options
author | Cary Coutant <ccoutant@google.com> | 2008-04-17 22:45:47 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2008-04-17 22:45:47 +0000 |
commit | c5818ff112aac72067c827a4a4fad732eae40741 (patch) | |
tree | 7d56ba982473581ec9aab6c40269137cb4a9ea35 /gold/errors.h | |
parent | e9bbd7c5e43873cff4050cad26808f727294f7cc (diff) | |
download | binutils-gdb-c5818ff112aac72067c827a4a4fad732eae40741.tar.gz |
* errors.cc (Errors::info): New function.
(gold_info): New function.
* errors.h (Errors::info): New function.
* gold.h (gold_info): New function.
* object.cc (Input_objects::add_object): Print trace output.
* options.cc (options::parse_set): New function.
(General_options::parse_wrap): Deleted.
(General_options::General_options): Deleted initializer.
* options.h (options::String_set): New typedef.
(options::parse_set): New function.
(DEFINE_set): New macro.
(General_options::wrap): Changed to use DEFINE_set. Changed
callers of any_wrap_symbols and is_wrap_symbol.
(General_options::trace, General_options::trace_symbol):
New options.
(General_options::any_wrap_symbols, General_options::is_wrap_symbol)
(General_options::wrap_symbols_): Deleted.
* symtab.cc (Symbol_table::add_from_object): Print trace output.
Diffstat (limited to 'gold/errors.h')
-rw-r--r-- | gold/errors.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gold/errors.h b/gold/errors.h index 0decc4ca089..bc779945382 100644 --- a/gold/errors.h +++ b/gold/errors.h @@ -57,6 +57,10 @@ class Errors void warning(const char* format, va_list); + // Print an informational message and continue. + void + info(const char* format, va_list); + // Report an error at a reloc location. template<int size, bool big_endian> void |