search for: coro_resum

Displaying 2 results from an estimated 2 matches for "coro_resum".

Did you mean: coro_resume
2017 Mar 12
2
What does it mean by a "DICompileUnit missing from llvm.dgs.cu" ? | Where is the error ?
On Sat, Mar 11, 2017, at 07:34 PM, David Blaikie via llvm-dev wrote: > On Sat, Mar 11, 2017 at 3:10 AM SANJAY SRIVALLABH SINGAPURAM via llvm-dev > < > llvm-dev at lists.llvm.org> wrote: > > > Hello, > > > > One of my Julia programs failed to execute with the following error, > > DICompileUnit not listed in llvm.dbg.cu > > !11 = distinct
2016 Jul 21
2
RFC: LLVM Coroutine Representation, Round 2
...; >> >> while (n-- > 0) { >> print(n+1); >> CORO_SUSPEND(); >> } >> >> CORO_END(free); >> } >> >> // CHECK-LABEL: @main >> int main() { >> void* coro = f(4); >> CORO_RESUME(coro); >> CORO_RESUME(coro); >> CORO_DESTROY(coro); >> } >> >> https://github.com/GorNishanov/clang/blob/coro-rfc/test/Coroutines/coro.c >> >> https://github.com/GorNishanov/clang/blob/coro-rfc/test/Coroutines/Inputs/coro.h >> >&gt...