diff options
author | Sean Silva <silvas@purdue.edu> | 2014-02-19 00:12:34 +0000 |
---|---|---|
committer | Sean Silva <silvas@purdue.edu> | 2014-02-19 00:12:34 +0000 |
commit | e0ddc731a4ad3b73457222496bc2588b09a0f91d (patch) | |
tree | 5f2ac54d24e1586283d68fcc7f8b809e4635a0e1 /llvm/docs/tutorial/LangImpl7.rst | |
parent | 090610d37a6bc50dabac779f97e158154cbe9bd7 (diff) | |
download | bcm5719-llvm-e0ddc731a4ad3b73457222496bc2588b09a0f91d.tar.gz bcm5719-llvm-e0ddc731a4ad3b73457222496bc2588b09a0f91d.zip |
[docs] Clean up some more llvm-gcc stuff
Some references to llvm-gcc were so crusty that I wasn't sure how to
proceed and so I've left them intact.
I also slipped in a quick peephole fix to use a :doc: link instead of
raw HTML link.
llvm-svn: 201619
Diffstat (limited to 'llvm/docs/tutorial/LangImpl7.rst')
-rw-r--r-- | llvm/docs/tutorial/LangImpl7.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/LangImpl7.rst b/llvm/docs/tutorial/LangImpl7.rst index a2e47b5f8a2..849ce50060c 100644 --- a/llvm/docs/tutorial/LangImpl7.rst +++ b/llvm/docs/tutorial/LangImpl7.rst @@ -237,7 +237,7 @@ strongly recommend that you use this technique for building SSA form, unless there is an extremely good reason not to. Using this technique is: -- Proven and well tested: llvm-gcc and clang both use this technique +- Proven and well tested: clang uses this technique for local mutable variables. As such, the most common clients of LLVM are using this to handle a bulk of their variables. You can be sure that bugs are found fast and fixed early. |