mirror of git://gcc.gnu.org/git/gcc.git
Return earlier if not effective_target_int32
Do early return *before* calling dg-init/torture-init. Returning without calling dg-finish/torture-finish messes up torture-options for subsequent tests. gcc/testsuite/ 2016-10-18 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com> * gcc.dg/sso/sso.exp: Return early if not effective_target_int32. From-SVN: r241302
This commit is contained in:
parent
0aeb81f86f
commit
e5163ec1df
|
|
@ -1,3 +1,8 @@
|
||||||
|
2016-10-18 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
|
||||||
|
|
||||||
|
* gcc.dg/sso/sso.exp: Return early if not
|
||||||
|
effective_target_int32.
|
||||||
|
|
||||||
2016-10-18 Richard Biener <rguenther@suse.de>
|
2016-10-18 Richard Biener <rguenther@suse.de>
|
||||||
|
|
||||||
* gcc.dg/tree-ssa/pr20318.c: Disable EVRP.
|
* gcc.dg/tree-ssa/pr20318.c: Disable EVRP.
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,10 @@
|
||||||
load_lib gcc-dg.exp
|
load_lib gcc-dg.exp
|
||||||
load_lib torture-options.exp
|
load_lib torture-options.exp
|
||||||
|
|
||||||
|
if { ![check_effective_target_int32] } {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
# Initialize `dg'.
|
# Initialize `dg'.
|
||||||
torture-init
|
torture-init
|
||||||
dg-init
|
dg-init
|
||||||
|
|
@ -32,10 +36,6 @@ set SSO_TORTURE_OPTIONS [list \
|
||||||
|
|
||||||
set-torture-options $SSO_TORTURE_OPTIONS
|
set-torture-options $SSO_TORTURE_OPTIONS
|
||||||
|
|
||||||
if { ![check_effective_target_int32] } {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
# Main loop.
|
# Main loop.
|
||||||
gcc-dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.c]] "" ""
|
gcc-dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.c]] "" ""
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue