diff options
author | Patrick Palka <ppalka@redhat.com> | 2021-06-30 20:44:52 -0400 |
---|---|---|
committer | Patrick Palka <ppalka@redhat.com> | 2021-06-30 20:44:52 -0400 |
commit | a688c284dd3848b6c4ea553035f0f9769fb4fbc9 (patch) | |
tree | b1f5e3e737b4d9af203fe878a0f6c7652e29e775 /gcc/dwarf2out.c | |
parent | 613497aa6e28ca009d8498002424019d2a8a9ca5 (diff) | |
download | gcc-a688c284dd3848b6c4ea553035f0f9769fb4fbc9.zip gcc-a688c284dd3848b6c4ea553035f0f9769fb4fbc9.tar.gz gcc-a688c284dd3848b6c4ea553035f0f9769fb4fbc9.tar.bz2 |
c++: cxx_eval_array_reference and empty elem type [PR101194]
Here the initializer for x is represented as an empty CONSTRUCTOR due to
its empty element type. So during constexpr evaluation of the ARRAY_REF
x[0], we end up trying to value initialize the omitted element at index 0,
which fails because the element type is not default constructible.
This patch makes cxx_eval_array_reference specifically handle the case
where the element type is an empty type.
PR c++/101194
gcc/cp/ChangeLog:
* constexpr.c (cxx_eval_array_reference): When the element type
is an empty type and the corresponding element is omitted, just
return an empty CONSTRUCTOR instead of attempting value
initialization.
gcc/testsuite/ChangeLog:
* g++.dg/cpp0x/constexpr-empty16.C: New test.
Diffstat (limited to 'gcc/dwarf2out.c')
0 files changed, 0 insertions, 0 deletions