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 | 006039cc7479acf1303d9bf5c583eb90a04bdf38 (patch) | |
tree | d16c4f118a0d0445d9433aeaad6b5fb13aa1b9bc /llvm/docs/LangRef.rst | |
parent | 1cffcf74d183ce8c70f30bbd445a0ded0207f961 (diff) | |
download | bcm5719-llvm-006039cc7479acf1303d9bf5c583eb90a04bdf38.tar.gz bcm5719-llvm-006039cc7479acf1303d9bf5c583eb90a04bdf38.zip |
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.
llvm-svn: 174041
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 d865f3f8b84..d3bfddd0f77 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/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 |