From: Nick Clifton Date: Thu, 11 Oct 2007 10:37:30 +0000 (+0000) Subject: * doc/as.texinfo (Type): Fix typo: STT_FUNC not STT_FUNCTION. X-Git-Tag: sid-snapshot-20071101~321 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5671778d0aa04aeb36de7709332bf0f2dc20bd25;p=platform%2Fupstream%2Fbinutils.git * doc/as.texinfo (Type): Fix typo: STT_FUNC not STT_FUNCTION. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 5d45b13..500beb2 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2007-10-11 Nick Clifton + + * doc/as.texinfo (Type): Fix typo: STT_FUNC not STT_FUNCTION. + 2007-10-08 Maciej W. Rozycki * config/tc-mips.c (AT): Rename to... diff --git a/gas/doc/as.texinfo b/gas/doc/as.texinfo index 4e07ef0..ed12baf 100644 --- a/gas/doc/as.texinfo +++ b/gas/doc/as.texinfo @@ -6191,21 +6191,35 @@ assemblers. The syntaxes supported are: @smallexample - .type STT_FUNCTION - .type STT_OBJECT + .type STT_ + .type ,# + .type ,@@ + .type ,%>type> + .type ,"" +@end smallexample + +The types supported are: - .type ,#function - .type ,#object +@table @gcctabopt +@item STT_FUNC +@itemx function +Mark the symbol as being a function name. - .type ,@@function - .type ,@@object +@item STT_OBJECT +@itemx object +Mark the symbol as being a data object. + +@item STT_TLS +@itemx tls_object +Mark the symbol as being a thead-local data object. + +@item STT_COMMON +@itemx common +Mark the symbol as being a common data object. +@end table + +Note: Some targets support extra types in addition to those listed above. - .type ,%function - .type ,%object - - .type ,"function" - .type ,"object" -@end smallexample @end ifset @end ifset