https://bugs.llvm.org/show_bug.cgi?id=32569

gornisha...@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED

--- Comment #2 from gornisha...@gmail.com ---
Thank you for the bug.
Fixed:

commit 3cc8445f85497cd1147c31d13ea4be1d2a629293
Author: Gor Nishanov <gornisha...@gmail.com>
Date:   Sat Apr 8 00:49:46 2017 +0000

    [coroutines] Make CoroSplit pass deterministic

    coro-split-after-phi.ll test was flaky due to non-determinism in
    the coroutine frame construction that was sorting the spill
    vector using a pointer to a def as a part of the key.

    The sorting was intended to make sure that spills for the same def
    are kept together, however, we populate the vector by processing
    defs in order, so the spill entires will end up together anyways.

    This change removes spill sorting and restores the determinism
    in the test.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299809
91177308-0d34-0410-b5e6-96231b3b80d8

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to