Displaying 3 results from an estimated 3 matches for "20c46f8d".
2016 Feb 27
0
Possible soundness issue with available_externally (split from "RFC: Add guard intrinsics")
Just as a reality check, I wrote up a demonstration where one link
order causes a SIGFPE and another doesn't (and the program is well
defined, as far as I can tell). All TUs are compiled with -O3. This is also
an instance where we don't actually speculate an inline function, but only
DSE across it (after deducing readnone).
Here's the link https://github.com/sanjoy/comdat-ipo
2016 Feb 28
2
Possible soundness issue with available_externally (split from "RFC: Add guard intrinsics")
..._____________________
> LLVM Developers mailing list
> llvm-dev at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160227/20c46f8d/attachment.html>
2016 Feb 27
3
Possible soundness issue with available_externally (split from "RFC: Add guard intrinsics")
> On Feb 25, 2016, at 11:41 AM, James Y Knight via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> While we're talking about this, I'd just mention again that the same issue arises for *normal* functions too, when linked into a shared library:
> int foo() { return 1; }
> int bar() { return foo(); }
>
> Now, compare:
> clang -fPIC -O1 -S -o - test.c