diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-08 19:22:44 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-08 19:22:44 +0000 |
commit | b0e56fb1958104d256dde2469889e64302172bfe (patch) | |
tree | 625f4fdac91fb1a18f970ba0155bb6111cf6e4d4 /gcc/testsuite | |
parent | 0b8cc04d21289740ab70cb972c4fe1c0a0e41bbf (diff) | |
download | gcc-b0e56fb1958104d256dde2469889e64302172bfe.tar.gz |
* common.opt: Add debug switches.
* flags.h (use_gnu_debug_info_extensions): Boolify.
* opts.c (write_symbols, debug_info_level,
use_gnu_debug_info_extensions): Move from toplev.c.
(set_debug_level): New.
(common_handle_options): Handle debug switches.
(print_help): Display target options directly.
* toplev.c (debug_hooks): Don't initialize.
(write_symbols, debug_info_level,
use_gnu_debug_info_extensions): Move to opts.c.
(debug_args, display_help, decode_g_option): Remove.
(process_options): Set no debug if level zero here,
and no-debug-hooks. Error here if impossible debug format selected.
* toplev.h (display_help, decode_g_option): Remove.
testsuite:
* lib/gcc-dg.exp: Update for diagnostic change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70253 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite')
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/lib/gcc-dg.exp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 9c7ea3bd816..d1ba048adbb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2003-08-08 Neil Booth <neil@daikokuya.co.uk> + + * lib/gcc-dg.exp: Update for diagnostic change. + 2003-08-07 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> PR c++/5767 diff --git a/gcc/testsuite/lib/gcc-dg.exp b/gcc/testsuite/lib/gcc-dg.exp index 827062352f8..ee1d4d84a64 100644 --- a/gcc/testsuite/lib/gcc-dg.exp +++ b/gcc/testsuite/lib/gcc-dg.exp @@ -199,7 +199,7 @@ proc gcc-dg-debug-runtest { target_compile trivial opt_opts testcases } { set comp_output [$target_compile \ "$srcdir/$subdir/$trivial" "trivial.S" assembly \ "additional_flags=$type"] - if { ! [string match "*: unknown or unsupported -g option*" \ + if { ! [string match "*: target system does not support the * debug format*" \ $comp_output] } { foreach level {1 "" 3} { lappend DEBUG_TORTURE_OPTIONS [list "${type}${level}"] |