diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-26 13:30:13 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-26 13:30:13 +0000 |
commit | 126fde57f3bf8b9c1233cd434552fae4b296ca74 (patch) | |
tree | 83f1c6fb4a4bbf90844ca0f207e789dc0eded754 /docs | |
parent | 11f2bf7f15a7d3b3df500f3f3e76355c888c23c7 (diff) |
Documentation: fix syntax error
Patch by David Waggoner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173571 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/LangRef.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/LangRef.rst b/docs/LangRef.rst index 955906764e..e90eedd4fc 100644 --- a/docs/LangRef.rst +++ b/docs/LangRef.rst @@ -111,7 +111,7 @@ After strength reduction: .. code-block:: llvm - %result = shl i32 %X, i8 3 + %result = shl i32 %X, 3 And the hard way: |