From b9321d481a024a8c552ca4ea3efa555be6bf270d Mon Sep 17 00:00:00 2001 From: Chuanqi Xu Date: Fri, 10 Dec 2021 15:18:53 +0800 Subject: [PATCH] [NFC] Format the newly added table for coro.end in coroutines.rst The intention should be formatted in two lines instead of one. --- llvm/docs/Coroutines.rst | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/llvm/docs/Coroutines.rst b/llvm/docs/Coroutines.rst index 82f3162..5e6bc233 100644 --- a/llvm/docs/Coroutines.rst +++ b/llvm/docs/Coroutines.rst @@ -1384,16 +1384,16 @@ the coroutine will already be marked as done by the final suspend. The following table summarizes the handling of `coro.end`_ intrinsic. -+--------------------------+------------------------+-------------------------------+ -| | In Start Function | In Resume/Destroy Functions | -+--------------------------+------------------------+-------------------------------+ -|unwind=false | nothing |``ret void`` | -+------------+-------------+------------------------+-------------------------------+ -| | WinEH | mark coroutine as done |``cleanupret unwind to caller``| -| | | |mark coroutine done | -|unwind=true +-------------+------------------------+-------------------------------+ -| | Landingpad | mark coroutine as done | mark coroutine done | -+------------+-------------+------------------------+-------------------------------+ ++--------------------------+------------------------+---------------------------------+ +| | In Start Function | In Resume/Destroy Functions | ++--------------------------+------------------------+---------------------------------+ +|unwind=false | nothing |``ret void`` | ++------------+-------------+------------------------+---------------------------------+ +| | WinEH | mark coroutine as done || ``cleanupret unwind to caller``| +| | | || mark coroutine done | +|unwind=true +-------------+------------------------+---------------------------------+ +| | Landingpad | mark coroutine as done | mark coroutine done | ++------------+-------------+------------------------+---------------------------------+ 'llvm.coro.end.async' Intrinsic -- 2.7.4