Commit f6d04238 by Kyrylo Tkachov Committed by Kyrylo Tkachov

[libstdc++][testsuite][reverted] Remove check for truncation overflow

    * testsuite/lib/libstdc++.exp (v3_target_compile): Remove
    check for unsupported.
    (v3_target_compile_as_c): Likewise.

From-SVN: r220206
parent 090238ee
2015-01-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* testsuite/lib/libstdc++.exp (v3_target_compile): Remove
check for unsupported.
(v3_target_compile_as_c): Likewise.
2015-01-28 Richard Biener <rguenther@suse.de> 2015-01-28 Richard Biener <rguenther@suse.de>
PR libstdc++/64798 PR libstdc++/64798
......
...@@ -486,12 +486,7 @@ proc v3_target_compile { source dest type options } { ...@@ -486,12 +486,7 @@ proc v3_target_compile { source dest type options } {
lappend options "timeout=[timeout_value]" lappend options "timeout=[timeout_value]"
set comp_output [target_compile $source $dest $type $options] set comp_output [target_compile $source $dest $type $options]
set unsupported_message [${tool}_check_unsupported_p $comp_output]
if { $unsupported_message != "" } {
unsupported "$dest: $unsupported_message"
return ""
}
return $comp_output return $comp_output
} }
...@@ -562,12 +557,7 @@ proc v3_target_compile_as_c { source dest type options } { ...@@ -562,12 +557,7 @@ proc v3_target_compile_as_c { source dest type options } {
lappend options "timeout=[timeout_value]" lappend options "timeout=[timeout_value]"
set comp_output [target_compile $source $dest $type $options] set comp_output [target_compile $source $dest $type $options]
set unsupported_message [${tool}_check_unsupported_p $comp_output]
if { $unsupported_message != "" } {
unsupported "$dest: $unsupported_message"
return ""
}
return $comp_output return $comp_output
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment