Displaying 2 results from an estimated 2 matches for "tmpbb".
Did you mean:
tmpb
2016 Jul 16
3
RFC: Strong GC References in LLVM
...f the
edge we
// just traversed was critical), then there are other paths through
this
// block along which the load may not be anticipated. Hoisting the
load
// above this block would be adding the load to execution paths along
// which it was not previously executed.
if (TmpBB->getTerminator()->getNumSuccessors() != 1)
return false;
Since it would have had edges to the exit block in any predecessor with a
may-throw call, it would have gotten the right answer.
Anyway, since i still don't plan on proposing changes here, i'm going to
stop harping on t...
2016 Jul 15
4
RFC: Strong GC References in LLVM
On Fri, Jul 15, 2016 at 4:00 PM, Andrew Trick <atrick at apple.com> wrote:
>
> On Jul 15, 2016, at 3:38 PM, Sanjoy Das <sanjoy at playingwithpointers.com>
> wrote:
>
> > Note that this is also necessary to makes post-dominance correct (but we
> > already do it in most cases, but i think there are still bugs open about
> > correctness)
>
> Yeah,