diff options
author | kristina <notstina@gmail.com> | 2019-11-16 23:32:48 +0000 |
---|---|---|
committer | kristina <notstina@gmail.com> | 2019-11-16 23:32:48 +0000 |
commit | 5e782e74b37f054f7ac84489ad90081674c1d845 (patch) | |
tree | e8ec2be02eb83be50d10df2cf18f3f113cc21d55 /llvm/docs | |
parent | fb55d56fcfaf5035e8ad77ef293587e26f0b159b (diff) | |
download | llvm-5e782e74b37f054f7ac84489ad90081674c1d845.zip llvm-5e782e74b37f054f7ac84489ad90081674c1d845.tar.gz llvm-5e782e74b37f054f7ac84489ad90081674c1d845.tar.bz2 |
[Docs] Remove stray :doc: directive.
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst index c172477..25cae13 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst @@ -196,7 +196,7 @@ automatically provide each one with an increasing, unique numeric suffix. Local value names for instructions are purely optional, but it makes it much easier to read the IR dumps. -:doc:`LLVM instructions <../../LangRef.html#instruction-reference>`_ are constrained by strict +`LLVM instructions <../../LangRef.html#instruction-reference>`_ are constrained by strict rules: for example, the Left and Right operators of an `add instruction <../../LangRef.html#add-instruction>`_ must have the same type, and the result type of the add must match the operand types. Because all values |