diff options
-rw-r--r-- | llvm/docs/Coroutines.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/Coroutines.rst b/llvm/docs/Coroutines.rst index 15934665196..5a95558c606 100644 --- a/llvm/docs/Coroutines.rst +++ b/llvm/docs/Coroutines.rst @@ -242,7 +242,7 @@ In the cleanup block, we will make freeing the coroutine frame conditional on `coro.free`_ intrinsic. If allocation is elided, `coro.free`_ returns `null` thus skipping the deallocation code: -.. code-block:: llvm +.. code-block:: text cleanup: %mem = call i8* @llvm.coro.free(token %id, i8* %hdl) |