diff options
Diffstat (limited to 'llvm/docs/LangRef.rst')
-rw-r--r-- | llvm/docs/LangRef.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index 0f9062c3388..0c08de6107c 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -7293,7 +7293,7 @@ by the corresponding shift amount in ``op2``. If the ``nuw`` keyword is present, then the shift produces a poison value if it shifts out any non-zero bits. If the ``nsw`` keyword is present, then the shift produces a poison -value it shifts out any bits that disagree with the resultant sign bit. +value if it shifts out any bits that disagree with the resultant sign bit. Example: """""""" |