diff options
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/GettingStarted.rst | 8 | ||||
-rw-r--r-- | llvm/docs/LangRef.rst | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/llvm/docs/GettingStarted.rst b/llvm/docs/GettingStarted.rst index 4777cde..bdb318d 100644 --- a/llvm/docs/GettingStarted.rst +++ b/llvm/docs/GettingStarted.rst @@ -46,10 +46,10 @@ Getting the Source Code and Building LLVM stacked pull requests and reverts), you can filter them from your `git fetch` (or `git pull`) with this configuration: -.. code-block:: console - - git config --add remote.origin.fetch '^refs/heads/users/*' - git config --add remote.origin.fetch '^refs/heads/revert-*' + .. code-block:: console + + git config --add remote.origin.fetch '^refs/heads/users/*' + git config --add remote.origin.fetch '^refs/heads/revert-*' #. Configure and build LLVM and Clang: diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index 22b58bf..20bd811 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -8904,7 +8904,7 @@ that may set ``errno``, allowing optimizations such as store-to-load forwarding across such routines. For example, the following is a valid metadata specifying the TBAA information -for an integer access: +for an integer access:: !llvm.errno.tbaa = !{!0} !0 = !{!1, !1, i64 0} |