[llvm] r338980 - [docs] Fix an LLVM-syntax code block to actually be valid LLVM synatx.
Chandler Carruth via llvm-commits
llvm-commits at lists.llvm.org
Sun Aug 5 18:41:25 PDT 2018
Author: chandlerc
Date: Sun Aug 5 18:41:25 2018
New Revision: 338980
URL: http://llvm.org/viewvc/llvm-project?rev=338980&view=rev
Log:
[docs] Fix an LLVM-syntax code block to actually be valid LLVM synatx.
Hopefully fixes an issue on the docs build bot.
Modified:
llvm/trunk/docs/CommandGuide/FileCheck.rst
Modified: llvm/trunk/docs/CommandGuide/FileCheck.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandGuide/FileCheck.rst?rev=338980&r1=338979&r2=338980&view=diff
==============================================================================
--- llvm/trunk/docs/CommandGuide/FileCheck.rst (original)
+++ llvm/trunk/docs/CommandGuide/FileCheck.rst Sun Aug 5 18:41:25 2018
@@ -270,9 +270,9 @@ you can use the "``CHECK-EMPTY:``" direc
.. code-block:: llvm
- foo
+ declare void @foo()
- bar
+ declare void @bar()
; CHECK: foo
; CHECK-EMPTY:
; CHECK-NEXT: bar
More information about the llvm-commits
mailing list