Displaying 2 results from an estimated 2 matches for "capturepr".
Did you mean:
capturer
2007 Dec 17
2
[LLVMdev] RFC: GLIBCXX_DEBUG ScheduleDAG Patch
Attached is a patch to fix a GLIBCXX_DEBUG error in ScheduleDAGRRList.
The problem is that calls to CapturePred may reprioritize elements in the
priority queue, violating streak weak ordering requirements.
To fix this, I introduced a reference wrapper for containers to obtain access
to the SUnitVec used by std::priority_queue. When CapturePred runs, it
calls updateNode which does a std::make_heap on the...
2007 Dec 17
0
[LLVMdev] RFC: GLIBCXX_DEBUG ScheduleDAG Patch
...ue with bringing Boost code
into llvm tree. However, does it make sense to move the license to the
top of the file? Chris?
Evan
On Dec 17, 2007, at 10:17 AM, David Greene wrote:
> Attached is a patch to fix a GLIBCXX_DEBUG error in ScheduleDAGRRList.
>
> The problem is that calls to CapturePred may reprioritize elements
> in the
> priority queue, violating streak weak ordering requirements.
>
> To fix this, I introduced a reference wrapper for containers to
> obtain access
> to the SUnitVec used by std::priority_queue. When CapturePred
> runs, it
> calls...