diff options
author | Michael Gottesman <mgottesman@apple.com> | 2013-01-31 05:44:04 +0000 |
---|---|---|
committer | Michael Gottesman <mgottesman@apple.com> | 2013-01-31 05:44:04 +0000 |
commit | 1cffcf74d183ce8c70f30bbd445a0ded0207f961 (patch) | |
tree | 5ade3e9adee1f9d68aaf4d78947089bb35e46a50 /llvm/docs | |
parent | 44ecdbdc6134c4906a8b8982809ead267cf52237 (diff) | |
download | bcm5719-llvm-1cffcf74d183ce8c70f30bbd445a0ded0207f961.tar.gz bcm5719-llvm-1cffcf74d183ce8c70f30bbd445a0ded0207f961.zip |
Formatting Fix. Changed " to `` around the word 'constant' in the Lang Ref
section Global Variable so that the style matches the other keywords in
said section.
llvm-svn: 174040
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/LangRef.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index 0bcbe44bd4a..d865f3f8b84 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -465,11 +465,11 @@ 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 defined as a global "constant," which indicates that +A variable may be marked with ``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 -initialization cannot be marked "constant" as there is a store to the +initialization cannot be marked ``constant`` as there is a store to the variable. LLVM explicitly allows *declarations* of global variables to be marked |