Displaying 4 results from an estimated 4 matches for "r182203".
2013 May 21
2
[LLVMdev] Inlining sqrt library function in X86
...s fast-math imply no-math-errno ?
Yes, in both GCC and Clang. Clang does have some annoying logic bugs surrounding this flag though. For example, setting -fno-fast-math would imply no-math-errno, overriding the Linux default. Quite weird. I've cleaned this up some and added more clear tests in r182203.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130521/cb97d65a/attachment.html>
2013 May 18
0
[LLVMdev] Inlining sqrt library function in X86
...t-math imply no-math-errno ?
>
Yes, in both GCC and Clang. Clang does have some annoying logic bugs
surrounding this flag though. For example, setting -fno-fast-math would
imply no-math-errno, overriding the Linux default. Quite weird. I've
cleaned this up some and added more clear tests in r182203.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130518/98edbec4/attachment.html>
2013 May 18
2
[LLVMdev] Inlining sqrt library function in X86
Does fast-math imply no-math-errno ?
Thanks,
Nadav
On May 17, 2013, at 15:36, Chris Lattner <clattner at apple.com> wrote:
>
> On May 17, 2013, at 3:33 PM, "Gurd, Preston" <preston.gurd at intel.com> wrote:
>
>> Using the following example program
>>
>> #include <math.h>
>>
>> double f(double d){
>> return sqrt(d);
2013 May 21
0
[LLVMdev] Inlining sqrt library function in X86
...imply no-math-errno ?
>
> Yes, in both GCC and Clang. Clang does have some annoying logic bugs surrounding this flag though. For example, setting -fno-fast-math would imply no-math-errno, overriding the Linux default. Quite weird. I've cleaned this up some and added more clear tests in r182203.
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev