mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-27 04:55:01 +08:00
g++-dg.exp (g++-dg-runtest): Change -std=c++1y to -std=c++14.
* lib/g++-dg.exp (g++-dg-runtest): Change -std=c++1y to -std=c++14. * lib/target-supports.exp (check_effective_target_c++14_only): Likewise. From-SVN: r217085
This commit is contained in:
parent
0caee3cadf
commit
0dadf72895
@ -1,3 +1,8 @@
|
||||
2014-11-04 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* lib/g++-dg.exp (g++-dg-runtest): Change -std=c++1y to -std=c++14.
|
||||
* lib/target-supports.exp (check_effective_target_c++14_only): Likewise.
|
||||
|
||||
2014-11-04 Andrew Stubbs <ams@codesourcery.com>
|
||||
|
||||
gcc/testsuite/
|
||||
|
@ -43,9 +43,9 @@ proc g++-dg-runtest { testcases flags default-extra-flags } {
|
||||
# if there's a dg-options line.
|
||||
if ![search_for $test "-std=*++"] {
|
||||
if [search_for $test "dg-options"] {
|
||||
set option_list { -std=gnu++98 -std=gnu++11 -std=gnu++1y }
|
||||
set option_list { -std=gnu++98 -std=gnu++11 -std=gnu++14 }
|
||||
} else {
|
||||
set option_list { -std=c++98 -std=c++11 -std=c++1y }
|
||||
set option_list { -std=c++98 -std=c++11 -std=c++14 }
|
||||
}
|
||||
} else {
|
||||
set option_list { "" }
|
||||
|
@ -5706,7 +5706,7 @@ proc check_effective_target_c++14_only { } {
|
||||
if ![check_effective_target_c++] {
|
||||
return 0
|
||||
}
|
||||
return [check-flags { { } { } { -std=c++1y -std=gnu++1y -std=c++14 -std=gnu++14 } }]
|
||||
return [check-flags { { } { } { -std=c++14 -std=gnu++14 -std=c++14 -std=gnu++14 } }]
|
||||
}
|
||||
|
||||
proc check_effective_target_c++14 { } {
|
||||
|
Loading…
Reference in New Issue
Block a user