Displaying 2 results from an estimated 2 matches for "49f74bd2".
2017 Jun 15
2
Function Inlining and undef / poison question
..._____________________
> 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/20170616/49f74bd2/attachment.html>
2017 Jun 15
2
Function Inlining and undef / poison question
Nuno,
One of your recent emails got me thinking about inlining.
I say this function is always well defined,
And it always executes statement S
F(a)
{
If (a == a) S;
}
And that if this function is inlined it must still be well defined,
And still always execute statement S
But if I read your example correctly you feel that the result
of inlining is undefined behavior because “if