libstdc++: Fix undefined shift when _Atomic_word is 64-bit
authorJonathan Wakely <jwakely@redhat.com>
Wed, 8 Dec 2021 19:36:24 +0000 (19:36 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Wed, 8 Dec 2021 23:41:03 +0000 (23:41 +0000)
commitc15aa46cca0649b68613d3292cf71c7cc57ef78f
treefa11127d7fef8066bda5f640cbd3ffda7c2c52cc
parentb77968a70537429b4f548f90c369d26e6b6943cc
libstdc++: Fix undefined shift when _Atomic_word is 64-bit

The check for _Atomic_word being 32-bit is just a normal runtime
condition for C++11 and C++14, because it doesn't use if-constexpr. That
means the 1LL << (CHAR_BIT * sizeof(_Atomic_word)) expression expands to
1LL << 64 on Solaris, which is ill-formed.

This adds another indirection so that the shift width is zero if the
code is unreachable.

libstdc++-v3/ChangeLog:

* include/bits/shared_ptr_base.h (_Sp_counted_base::_M_release()):
Make shift width conditional on __double_word condition.
libstdc++-v3/include/bits/shared_ptr_base.h