[llvm-commits] CVS: llvm/docs/LangRef.html
Lauro Ramos Venancio
lauro.venancio at gmail.com
Thu Apr 12 13:34:53 PDT 2007
Changes in directory llvm/docs:
LangRef.html updated: 1.233 -> 1.234
---
Log message:
update documentation
---
Diffs of the changes: (+5 -3)
LangRef.html | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
Index: llvm/docs/LangRef.html
diff -u llvm/docs/LangRef.html:1.233 llvm/docs/LangRef.html:1.234
--- llvm/docs/LangRef.html:1.233 Wed Apr 11 20:03:03 2007
+++ llvm/docs/LangRef.html Thu Apr 12 15:34:36 2007
@@ -603,8 +603,10 @@
<p>Global variables define regions of memory allocated at compilation time
instead of run-time. Global variables may optionally be initialized, may have
an explicit section to be placed in, and may
-have an optional explicit alignment specified. A
-variable may be defined as a global "constant," which indicates that the
+have an optional explicit alignment specified. A variable may be defined as
+"thread_local", which means that it will not be shared by threads (each thread
+will have a separated copy of the variable).
+A variable may be defined as a global "constant," which indicates that the
contents of the variable will <b>never</b> 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
@@ -4730,7 +4732,7 @@
<a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
<a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br>
- Last modified: $Date: 2007/04/12 01:03:03 $
+ Last modified: $Date: 2007/04/12 20:34:36 $
</address>
</body>
</html>
More information about the llvm-commits
mailing list