diff options
author | Marek Polacek <polacek@redhat.com> | 2022-05-27 10:51:30 -0400 |
---|---|---|
committer | Marek Polacek <polacek@redhat.com> | 2022-05-27 12:01:51 -0400 |
commit | d822f4bbd714c6595f70cc68888dcebecfb6662d (patch) | |
tree | 160001393e90df8bce2b1930c7ebe8bc495d6360 /gcc/c/c-parser.cc | |
parent | ca4b95069ca7dbf0be3a5aae053631e7a1b20103 (diff) | |
download | gcc-d822f4bbd714c6595f70cc68888dcebecfb6662d.zip gcc-d822f4bbd714c6595f70cc68888dcebecfb6662d.tar.gz gcc-d822f4bbd714c6595f70cc68888dcebecfb6662d.tar.bz2 |
c++: Fix ICE with -Wmismatched-tags [PR105725]
Here we ICE with -Wmismatched-tags on something like
template <class T>
bool B<T, enable_if_t<is_class_v<class T::foo>>>;
Specifically, the "class T::foo" bit. There, class_decl_loc_t::add gets
a TYPENAME_TYPE as TYPE, rather than a class/union type, so checking
TYPE_BEING_DEFINED will crash. I think it's OK to allow a TYPENAME_TYPE to
slip into that function; we just shouldn't consider the 'class' tag redundant
(which works as a 'typename'). In fact, every other compiler *requires* it.
PR c++/105725
gcc/cp/ChangeLog:
* parser.cc (class_decl_loc_t::add): Check CLASS_TYPE_P.
gcc/testsuite/ChangeLog:
* g++.dg/warn/Wmismatched-tags-10.C: New test.
Diffstat (limited to 'gcc/c/c-parser.cc')
0 files changed, 0 insertions, 0 deletions