diff options
| author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-25 18:42:05 +0000 |
|---|---|---|
| committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-25 18:42:05 +0000 |
| commit | 7d167d36a47604eeb537cb5ab88baad2973ea0c3 (patch) | |
| tree | 6559a3f974f1b549f5ede3b369d61422c85d4070 | |
| parent | daacc721fd8fc3be50bf5499a080a74cfbffc72f (diff) | |
| download | ppe42-gcc-7d167d36a47604eeb537cb5ab88baad2973ea0c3.tar.gz ppe42-gcc-7d167d36a47604eeb537cb5ab88baad2973ea0c3.zip | |
* doc/tm.texi (Sections): Document TLS_COMMON_ASM_OP,
TLS_SECTION_ASM_FLAG.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@157728 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/doc/tm.texi | 14 |
2 files changed, 18 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 73dd2227d5d..257fbbf8cd2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-03-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * doc/tm.texi (Sections): Document TLS_COMMON_ASM_OP, + TLS_SECTION_ASM_FLAG. + 2010-03-25 Jakub Jelinek <jakub@redhat.com> PR bootstrap/43511 diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index a9822ab036e..a11e99ecdad 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -1,5 +1,5 @@ @c Copyright (C) 1988,1989,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001, -@c 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +@c 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 @c Free Software Foundation, Inc. @c This is part of the GCC manual. @c For copying conditions, see the file gcc.texi. @@ -6786,6 +6786,18 @@ containing the assembler operation to identify the following data as uninitialized, writable small data. @end defmac +@defmac TLS_COMMON_ASM_OP +If defined, a C expression whose value is a string containing the +assembler operation to identify the following data as thread-local +common data. The default is @code{".tls_common"}. +@end defmac + +@defmac TLS_SECTION_ASM_FLAG +If defined, a C expression whose value is a character constant +containing the flag used to mark a section as a TLS section. The +default is @code{'T'}. +@end defmac + @defmac INIT_SECTION_ASM_OP If defined, a C expression whose value is a string, including spacing, containing the assembler operation to identify the following data as |

