diff options
author | Michael Gottesman <mgottesman@apple.com> | 2013-01-31 05:48:48 +0000 |
---|---|---|
committer | Michael Gottesman <mgottesman@apple.com> | 2013-01-31 05:48:48 +0000 |
commit | f5735888d54875a4909930126a03f6a1d9efb529 (patch) | |
tree | bdeb6bb6e268993f00b5eaccfbe3cf59e32f10ec | |
parent | 3480487172626d3871faeba4765470a2268aad57 (diff) | |
download | external_llvm-f5735888d54875a4909930126a03f6a1d9efb529.zip external_llvm-f5735888d54875a4909930126a03f6a1d9efb529.tar.gz external_llvm-f5735888d54875a4909930126a03f6a1d9efb529.tar.bz2 |
Fixed a mistake in my previous commit where I changed the wording slightly and forgot to undo the change after changing my mind and deciding to only commit the style changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174041 91177308-0d34-0410-b5e6-96231b3b80d8
-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 d865f3f..d3bfddd 100644 --- a/docs/LangRef.rst +++ b/docs/LangRef.rst @@ -465,7 +465,7 @@ more information on under which circumstances the different models may be used. The target may choose a different TLS model if the specified model is not supported, or if a better choice of model can be made. -A variable may be marked with ``constant``, which indicates that +A variable may be defined as a global ``constant``, which indicates that the contents of the variable will **never** be modified (enabling better optimization, allowing the global data to be placed in the read-only section of an executable, etc). Note that variables that need runtime |