mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 05:10:33 +08:00
re PR c++/70266 (ICE on invalid code on x86_64-linux-gnu: unexpected expression ‘foo’ of kind overload)
/cp 2017-03-05 Paolo Carlini <paolo.carlini@oracle.com> PR c++/70266 * except.c (build_must_not_throw_expr): Perform the implicit conversions on the condition. /testsuite 2017-03-05 Paolo Carlini <paolo.carlini@oracle.com> PR c++/70266 * g++.dg/tm/pr70266.C: New. From-SVN: r245901
This commit is contained in:
parent
ef78bc3c0b
commit
d8b4baeb45
@ -1,3 +1,9 @@
|
||||
2017-03-05 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
PR c++/70266
|
||||
* except.c (build_must_not_throw_expr): Perform the implicit
|
||||
conversions on the condition.
|
||||
|
||||
2017-03-03 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* mangle.c (mangle_decl): Check -Wnoexcept-type instead of
|
||||
|
@ -268,6 +268,9 @@ build_must_not_throw_expr (tree body, tree cond)
|
||||
|
||||
if (cond && !value_dependent_expression_p (cond))
|
||||
{
|
||||
cond = perform_implicit_conversion_flags (boolean_type_node, cond,
|
||||
tf_warning_or_error,
|
||||
LOOKUP_NORMAL);
|
||||
cond = cxx_constant_value (cond);
|
||||
if (integer_zerop (cond))
|
||||
return body;
|
||||
|
@ -1,3 +1,8 @@
|
||||
2017-03-05 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
PR c++/70266
|
||||
* g++.dg/tm/pr70266.C: New.
|
||||
|
||||
2017-03-05 Andre Vehreschild <vehre@gcc.gnu.org>
|
||||
Alessandro Fanfarillo <fanfarillo.gcc@gmail.com>
|
||||
|
||||
|
8
gcc/testsuite/g++.dg/tm/pr70266.C
Normal file
8
gcc/testsuite/g++.dg/tm/pr70266.C
Normal file
@ -0,0 +1,8 @@
|
||||
// { dg-do compile { target c++11 } }
|
||||
// { dg-options "-fgnu-tm" }
|
||||
|
||||
template < typename T >
|
||||
int foo (int x, T t)
|
||||
{
|
||||
return __transaction_atomic noexcept (foo) (1); // { dg-error "cannot resolve" }
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user