aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Edelsohn <edelsohn@gnu.org>2002-09-09 20:04:32 +0000
committerDavid Edelsohn <dje@gcc.gnu.org>2002-09-09 16:04:32 -0400
commite2a6476ec74eae88cd7db02f1ec240b11cd99c59 (patch)
treec697fe3d292c43da86e46f899b4bf4f18f5dd46b
parentb73b1546e632d89232d8b58df211845a2dd91d1c (diff)
downloadgcc-e2a6476ec74eae88cd7db02f1ec240b11cd99c59.zip
gcc-e2a6476ec74eae88cd7db02f1ec240b11cd99c59.tar.gz
gcc-e2a6476ec74eae88cd7db02f1ec240b11cd99c59.tar.bz2
tm.texi (TARGET_HAVE_SRODATA_SECTION): New description.
* doc/tm.texi (TARGET_HAVE_SRODATA_SECTION): New description. (TARGET_HAVE_TLS): New description. From-SVN: r56978
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/doc/tm.texi11
2 files changed, 16 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5b2a463..6d167bc 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2002-09-09 David Edelsohn <edelsohn@gnu.org>
+
+ * doc/tm.texi (TARGET_HAVE_SRODATA_SECTION): New description.
+ (TARGET_HAVE_TLS): New description.
+
2002-09-09 Janis Johnson <janis187@us.ibm.com>
* doc/extend.texi (Statement Exprs): Fix broken link.
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi
index 7bc63b6..0576d74 100644
--- a/gcc/doc/tm.texi
+++ b/gcc/doc/tm.texi
@@ -5924,6 +5924,11 @@ Returns true if @var{exp} should be placed into a ``small data'' section.
The default version of this hook always returns false.
@end deftypefn
+@deftypevar {Target Hook} bool TARGET_HAVE_SRODATA_SECTION
+Contains the value true if the target places read-only
+``small data'' into a separate section. The default value is false.
+@end deftypevar
+
@deftypefn {Target Hook} bool TARGET_BINDS_LOCAL_P (tree @var{exp})
Returns true if @var{exp} names an object for which name resolution
rules must resolve to the current ``module'' (dynamic shared library
@@ -5934,6 +5939,12 @@ for ELF, which has a looser model of global name binding than other
currently supported object file formats.
@end deftypefn
+@deftypevar {Target Hook} bool TARGET_HAVE_TLS
+Contains the value true if the target supports thread-local storage.
+The default value is false.
+@end deftypevar
+
+
@node PIC
@section Position Independent Code
@cindex position independent code