]> git.ipfire.org Git - thirdparty/gcc.git/commit
c++: ICE with -Wlogical-op [PR107755]
authorMarek Polacek <polacek@redhat.com>
Tue, 31 Jan 2023 19:36:30 +0000 (14:36 -0500)
committerMarek Polacek <polacek@redhat.com>
Wed, 1 Feb 2023 13:42:43 +0000 (08:42 -0500)
commitfb2d50f72caf3b84b315bc760368670680999749
tree8f91e7786552aa1a7fe7fb529a9e426a0b9c2766
parent3ff1a0f7dc8274c7bdd52e61a5f783815345532a
c++: ICE with -Wlogical-op [PR107755]

Here we crash in the middle end because warn_logical_operator calls
build_range_check which calls various fold_* functions and those
don't work too well when we're still processing template trees.  For
instance here we crash because we're converting a RECORD_TYPE to bool.
At this point VIEW_CONVERT_EXPR<struct Foo>(b) hasn't yet been converted
to Foo::operator bool (&b).

I was excited to fix this with instantiation_dependent_expression_p
which can now be called from c-family/ as well, but the problem isn't
that the expression is dependent.  So, p_t_d it is.

PR c++/107755

gcc/cp/ChangeLog:

* call.cc (build_new_op): Don't call warn_logical_operator when
processing a template.

gcc/testsuite/ChangeLog:

* g++.dg/warn/Wlogical-op-4.C: New test.

(cherry picked from commit 5ce8961b46f050a96e8c542b34b1cf024ba95f1b)
gcc/cp/call.cc
gcc/testsuite/g++.dg/warn/Wlogical-op-4.C [new file with mode: 0644]