Re: TR29124 C++ Special Maths - Make pull functions into global namespace.

2016-02-12 Thread Jonathan Wakely
On 12/02/16 09:52 -0800, Mike Stump wrote: On Feb 11, 2016, at 3:57 AM, Jonathan Wakely wrote: On 10/02/16 22:36 -0800, Mike Stump wrote: I’m seeing: /home/mrs/work1/gcc/libstdc++-v3/testsuite/special_functions/18_riemann_zeta/check_value.cc: In function 'void test(const

Re: TR29124 C++ Special Maths - Make pull functions into global namespace.

2016-02-12 Thread Mike Stump
On Feb 12, 2016, at 1:01 PM, Jonathan Wakely wrote: > OK, thanks. t double checked the log file: -D__STDCPP_WANT_MATH_SPEC_FUNCS__ -DMAX_ITERATIONS=5 which I neglected to do the first time. With that check looking good as well, I checked it in, thanks.

Re: TR29124 C++ Special Maths - Make pull functions into global namespace.

2016-02-12 Thread Jonathan Wakely
On 12/02/16 12:39 -0800, Mike Stump wrote: On Feb 12, 2016, at 10:07 AM, Jonathan Wakely wrote: On 12/02/16 09:52 -0800, Mike Stump wrote: On Feb 11, 2016, at 3:57 AM, Jonathan Wakely wrote: On 10/02/16 22:36 -0800, Mike Stump wrote: I’m seeing:

Re: TR29124 C++ Special Maths - Make pull functions into global namespace.

2016-02-12 Thread Mike Stump
On Feb 12, 2016, at 10:07 AM, Jonathan Wakely wrote: > On 12/02/16 09:52 -0800, Mike Stump wrote: >> On Feb 11, 2016, at 3:57 AM, Jonathan Wakely wrote: >>> On 10/02/16 22:36 -0800, Mike Stump wrote: I’m seeing:

Re: TR29124 C++ Special Maths - Make pull functions into global namespace.

2016-02-11 Thread Jonathan Wakely
On 10/02/16 22:36 -0800, Mike Stump wrote: I’m seeing: /home/mrs/work1/gcc/libstdc++-v3/testsuite/special_functions/18_riemann_zeta/check_value.cc: In function 'void test(const testcase_riemann_zeta (&)[Num], Tp)':

Re: TR29124 C++ Special Maths - Make pull functions into global namespace.

2016-02-10 Thread Mike Stump
I’m seeing: /home/mrs/work1/gcc/libstdc++-v3/testsuite/special_functions/18_riemann_zeta/check_value.cc: In function 'void test(const testcase_riemann_zeta (&)[Num], Tp)': /home/mrs/work1/gcc/libstdc++-v3/testsuite/special_functions/18_riemann_zeta/check_value.cc:285:15: error: 'riemann_zeta'

Re: TR29124 C++ Special Maths - Make pull functions into global namespace.

2016-01-22 Thread Jonathan Wakely
On 21/01/16 19:07 -0500, Ed Smith-Rowland wrote: On 01/21/2016 07:29 AM, Jonathan Wakely wrote: On 20/01/16 20:30 -0500, Ed Smith-Rowland wrote: Now that libstdc++ installs a proper math.h we can piggyback on that to put in the last bit of TR29124. This patch adds the math special functions

Re: TR29124 C++ Special Maths - Make pull functions into global namespace.

2016-01-22 Thread Ed Smith-Rowland
On 01/22/2016 05:39 AM, Jonathan Wakely wrote: On 21/01/16 19:07 -0500, Ed Smith-Rowland wrote: On 01/21/2016 07:29 AM, Jonathan Wakely wrote: On 20/01/16 20:30 -0500, Ed Smith-Rowland wrote: Now that libstdc++ installs a proper math.h we can piggyback on that to put in the last bit of

Re: TR29124 C++ Special Maths - Make pull functions into global namespace.

2016-01-21 Thread Jonathan Wakely
On 20/01/16 20:30 -0500, Ed Smith-Rowland wrote: Now that libstdc++ installs a proper math.h we can piggyback on that to put in the last bit of TR29124. This patch adds the math special functions to c_compatibility/math.h in the global namespace. I remove the XFAILs from the compile_2.cc

Re: TR29124 C++ Special Maths - Make pull functions into global namespace.

2016-01-21 Thread Ed Smith-Rowland
On 01/21/2016 07:29 AM, Jonathan Wakely wrote: On 20/01/16 20:30 -0500, Ed Smith-Rowland wrote: Now that libstdc++ installs a proper math.h we can piggyback on that to put in the last bit of TR29124. This patch adds the math special functions to c_compatibility/math.h in the global

TR29124 C++ Special Maths - Make pull functions into global namespace.

2016-01-20 Thread Ed Smith-Rowland
Now that libstdc++ installs a proper math.h we can piggyback on that to put in the last bit of TR29124. This patch adds the math special functions to c_compatibility/math.h in the global namespace. I remove the XFAILs from the compile_2.cc tests. This converts 21 XFAILs into 21 PASSes.