Skip to content
Snippets Groups Projects
Commit 0ded30b3 authored by Jonathan Wakely's avatar Jonathan Wakely
Browse files

libstdc++: Do not use __used or __packed as identifiers

These names (and __unused) are defined as macros by newlib.

libstdc++-v3/ChangeLog:

	* include/std/format: Rename all variables called __used or
	__packed.
	* testsuite/17_intro/badnames.cc: Add no_pch options.
	* testsuite/17_intro/names.cc: Check __packed, __unused and
	__used.
parent 36cabc25
No related branches found
No related tags found
No related merge requests found
...@@ -2472,21 +2472,21 @@ namespace __format ...@@ -2472,21 +2472,21 @@ namespace __format
void void
_M_overflow() override _M_overflow() override
{ {
auto __used = this->_M_used(); auto __s = this->_M_used();
if (_M_max < 0) // No maximum. if (_M_max < 0) // No maximum.
_M_out = ranges::copy(__used, std::move(_M_out)).out; _M_out = ranges::copy(__s, std::move(_M_out)).out;
else if (_M_count < size_t(_M_max)) else if (_M_count < size_t(_M_max))
{ {
auto __max = _M_max - _M_count; auto __max = _M_max - _M_count;
span<_CharT> __first; span<_CharT> __first;
if (__max < __used.size()) if (__max < __s.size())
__first = __used.first(__max); __first = __s.first(__max);
else else
__first = __used; __first = __s;
_M_out = ranges::copy(__first, std::move(_M_out)).out; _M_out = ranges::copy(__first, std::move(_M_out)).out;
} }
this->_M_rewind(); this->_M_rewind();
_M_count += __used.size(); _M_count += __s.size();
} }
public: public:
...@@ -2529,8 +2529,8 @@ namespace __format ...@@ -2529,8 +2529,8 @@ namespace __format
void void
_M_overflow() _M_overflow()
{ {
auto __used = this->_M_used(); auto __s = this->_M_used();
_M_count += __used.size(); _M_count += __s.size();
if (_M_max >= 0) if (_M_max >= 0)
{ {
...@@ -2544,7 +2544,7 @@ namespace __format ...@@ -2544,7 +2544,7 @@ namespace __format
{ {
// No maximum character count. Just extend the span to allow // No maximum character count. Just extend the span to allow
// writing more characters to it. // writing more characters to it.
this->_M_reset({__used.data(), __used.size() + 1024}, __used.end()); this->_M_reset({__s.data(), __s.size() + 1024}, __s.end());
} }
} }
...@@ -2594,12 +2594,12 @@ namespace __format ...@@ -2594,12 +2594,12 @@ namespace __format
{ {
_Iter_sink::_M_overflow(); _Iter_sink::_M_overflow();
iter_difference_t<_OutIter> __count(_M_count); iter_difference_t<_OutIter> __count(_M_count);
auto __used = this->_M_used(); auto __s = this->_M_used();
auto __last = _M_first; auto __last = _M_first;
if (__used.data() == _M_buf) // Wrote at least _M_max characters. if (__s.data() == _M_buf) // Wrote at least _M_max characters.
__last += _M_max; __last += _M_max;
else else
__last += iter_difference_t<_OutIter>(__used.size()); __last += iter_difference_t<_OutIter>(__s.size());
return { __last, __count }; return { __last, __count };
} }
}; };
...@@ -3119,10 +3119,10 @@ namespace __format ...@@ -3119,10 +3119,10 @@ namespace __format
constexpr auto constexpr auto
__pack_arg_types(const array<_Arg_t, _Nm>& __types) __pack_arg_types(const array<_Arg_t, _Nm>& __types)
{ {
__UINT64_TYPE__ __packed = 0; __UINT64_TYPE__ __packed_types = 0;
for (auto __i = __types.rbegin(); __i != __types.rend(); ++__i) for (auto __i = __types.rbegin(); __i != __types.rend(); ++__i)
__packed = (__packed << _Bits) | *__i; __packed_types = (__packed_types << _Bits) | *__i;
return __packed; return __packed_types;
} }
} // namespace __format } // namespace __format
/// @endcond /// @endcond
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { dg-do compile { target x86_64-*-linux* } } // { dg-do compile { target x86_64-*-linux* } }
// { dg-add-options no_pch }
// Names taken from coding_style.bad_identifiers in the libstdc++ manual. // Names taken from coding_style.bad_identifiers in the libstdc++ manual.
// We can't test this on all targets, because these names are used in // We can't test this on all targets, because these names are used in
......
...@@ -129,8 +129,11 @@ ...@@ -129,8 +129,11 @@
#define ptr ( #define ptr (
#endif #endif
// This clashes with newlib so don't use it. // These clash with newlib so don't use them.
# define __lockable cannot be used as an identifier # define __lockable cannot be used as an identifier
# define __packed cannot be used as an identifier
# define __unused cannot be used as an identifier
# define __used cannot be used as an identifier
#ifndef __APPLE__ #ifndef __APPLE__
#define __weak predefined qualifier on darwin #define __weak predefined qualifier on darwin
...@@ -239,8 +242,11 @@ ...@@ -239,8 +242,11 @@
#endif #endif
#if __has_include(<newlib.h>) #if __has_include(<newlib.h>)
// newlib's <sys/cdefs.h> defines __lockable as a macro. // newlib's <sys/cdefs.h> defines these as macros.
#undef __lockable #undef __lockable
#undef __packed
#undef __unused
#undef __used
// newlib's <time.h> defines __tzrule_type with these members. // newlib's <time.h> defines __tzrule_type with these members.
#undef d #undef d
#undef m #undef m
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment