Commit af23b26a by Jonathan Wakely Committed by Jonathan Wakely

Use __LONG_LONG_MAX__ instead of LONG_LONG_MAX in test

	* testsuite/decimal/conversion-to-integral.cc: Use predefined macro
	instead of non-standard glibc one.

From-SVN: r253894
parent 426776f1
2017-10-19 Jonathan Wakely <jwakely@redhat.com>
* testsuite/decimal/conversion-to-integral.cc: Use predefined macro
instead of non-standard glibc one.
2017-10-16 François Dumont <fdumont@gcc.gnu.org>
PR libstdc++/82558
......
......@@ -64,7 +64,7 @@ void
conversion_to_integral_128 (void)
{
#undef MAXVAL
#define MAXVAL LONG_LONG_MAX
#define MAXVAL __LONG_LONG_MAX__
decimal128 a, b (1), c (-1), d (MAXVAL), e (-MAXVAL);
long long ll;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment