testsuite - handle the -fno-diagnostics-show-line-numbers in compat tests.

2018-12-06  Iain Sandoe  <iain@sandoe.co.uk>

	* lib/c-compat.exp (compat-use-alt-compiler):
	Handle -fno-diagnostics-show-line-numbers.
	(compat_setup_dfp): Likewise.

From-SVN: r266840
This commit is contained in:
Iain Sandoe 2018-12-06 08:14:57 +00:00 committed by Iain Sandoe
parent f3b58759c2
commit bd38d0da47
2 changed files with 17 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2018-12-06 Iain Sandoe <iain@sandoe.co.uk>
* lib/c-compat.exp (compat-use-alt-compiler):
Handle -fno-diagnostics-show-line-numbers.
(compat_setup_dfp): Likewise.
2018-12-05 Jeff Law <law@redhat.com>
PR rtl-optimization/85770

View File

@ -35,7 +35,7 @@ load_lib target-libpath.exp
#
proc compat-use-alt-compiler { } {
global GCC_UNDER_TEST ALT_CC_UNDER_TEST
global compat_same_alt compat_alt_caret compat_alt_color
global compat_same_alt compat_alt_caret compat_alt_color compat_no_line_no
global TEST_ALWAYS_FLAGS
# We don't need to do this if the alternate compiler is actually
@ -48,6 +48,9 @@ proc compat-use-alt-compiler { } {
if { $compat_alt_color == 0 } then {
regsub -- "-fdiagnostics-color=never" $TEST_ALWAYS_FLAGS "" TEST_ALWAYS_FLAGS
}
if { $compat_no_line_no == 0 } then {
regsub -- "-fno-diagnostics-show-line-numbers" $TEST_ALWAYS_FLAGS "" TEST_ALWAYS_FLAGS
}
restore_gcc_exec_prefix_env_var
}
}
@ -77,10 +80,12 @@ proc compat_setup_dfp { } {
global compat_have_dfp
global compat_alt_caret
global compat_alt_color
global compat_no_line_no
global TEST_ALWAYS_FLAGS compat_save_TEST_ALWAYS_FLAGS
set compat_alt_caret 0
set compat_alt_color 0
set compat_no_line_no 0
set compat_save_TEST_ALWAYS_FLAGS $TEST_ALWAYS_FLAGS
verbose "compat_setup_dfp: $compat_use_alt $compat_same_alt" 2
@ -100,6 +105,11 @@ proc compat_setup_dfp { } {
int dummy; } "-fdiagnostics-color=never"] != 0 } {
set compat_alt_color 1
}
if { [check_no_compiler_messages_nocache compat_alt_has_no_line_no object {
int dummy; } "-fno-diagnostics-show-line-numbers"] != 0 } {
set compat_no_line_no 1
}
compat-use-tst-compiler
}