Re: [Mingw-w64-public] [PATCH] Add the sincos* functions on arm, calling into sin/cos separately

2017-08-03 Thread Martin Storsjö
On Thu, 3 Aug 2017, Kai Tietz via Mingw-w64-public wrote: Hmm, is there a chance that this source file is used for none ARM? If so, we should reject this on top, as other targets (the exisiting ones) are already providing this function. Yes, the other targets already provide this function.

Re: [Mingw-w64-public] [PATCH] Add the sincos* functions on arm, calling into sin/cos separately

2017-08-03 Thread Kai Tietz via Mingw-w64-public
Hmm, is there a chance that this source file is used for none ARM? If so, we should reject this on top, as other targets (the exisiting ones) are already providing this function. Otherwise patch looks ok for me too. Regards, Kai 2017-08-03 0:48 GMT+02:00 JonY via Mingw-w64-public

Re: [Mingw-w64-public] [PATCH] Add the sincos* functions on arm, calling into sin/cos separately

2017-08-02 Thread JonY via Mingw-w64-public
On 07/30/2017 07:45 PM, Martin Storsjö wrote: > On arm (unless --enable-experimental=softmath is set), we pass > sin/cos function calls straight through to msvcrt. We normally > provide implementations of the sincos family of functions, that > provide both return values at once. Provide

[Mingw-w64-public] [PATCH] Add the sincos* functions on arm, calling into sin/cos separately

2017-07-30 Thread Martin Storsjö
On arm (unless --enable-experimental=softmath is set), we pass sin/cos function calls straight through to msvcrt. We normally provide implementations of the sincos family of functions, that provide both return values at once. Provide implementations of these functions that simply call the sin/cos