From: Jonathan Wakely Date: Wed, 10 Apr 2019 14:46:03 +0000 (+0100) Subject: Fix typo in effective-target check X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9cadd6bd4d8d68688d30915716b65dc98eb535ac;p=gcc.git Fix typo in effective-target check * testsuite/lib/libstdc++.exp (check_v3_target_parallel_mode): Fix typo. From-SVN: r270259 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 355e2d5137d..99986074413 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,8 @@ 2019-04-10 Jonathan Wakely + * testsuite/lib/libstdc++.exp (check_v3_target_parallel_mode): Fix + typo. + PR libstdc++/89851 * testsuite/20_util/variant/89851.cc: New test. diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp index 5a12ac0242d..d0efc90a1ba 100644 --- a/libstdc++-v3/testsuite/lib/libstdc++.exp +++ b/libstdc++-v3/testsuite/lib/libstdc++.exp @@ -1048,7 +1048,7 @@ proc check_v3_target_parallel_mode { } { global v3-libgomp # If 'make check-parallel' is running the test succeeds. if { ${v3-libgomp} == 1 && [regexp "libgomp" $cxxflags] } { - return1 1 + return 1 } return 0 }]