mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
* doc/as.texinfo (Type): Fix typo: STT_FUNC not STT_FUNCTION.
This commit is contained in:
parent
f210dcff90
commit
5671778d0a
@ -1,3 +1,7 @@
|
||||
2007-10-11 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* doc/as.texinfo (Type): Fix typo: STT_FUNC not STT_FUNCTION.
|
||||
|
||||
2007-10-08 Maciej W. Rozycki <macro@linux-mips.org>
|
||||
|
||||
* config/tc-mips.c (AT): Rename to...
|
||||
|
@ -6191,21 +6191,35 @@ assemblers.
|
||||
The syntaxes supported are:
|
||||
|
||||
@smallexample
|
||||
.type <name> STT_FUNCTION
|
||||
.type <name> STT_OBJECT
|
||||
|
||||
.type <name>,#function
|
||||
.type <name>,#object
|
||||
|
||||
.type <name>,@@function
|
||||
.type <name>,@@object
|
||||
|
||||
.type <name>,%function
|
||||
.type <name>,%object
|
||||
|
||||
.type <name>,"function"
|
||||
.type <name>,"object"
|
||||
.type <name> STT_<TYPE_IN_UPPER_CASE>
|
||||
.type <name>,#<type>
|
||||
.type <name>,@@<type>
|
||||
.type <name>,%>type>
|
||||
.type <name>,"<type>"
|
||||
@end smallexample
|
||||
|
||||
The types supported are:
|
||||
|
||||
@table @gcctabopt
|
||||
@item STT_FUNC
|
||||
@itemx function
|
||||
Mark the symbol as being a function name.
|
||||
|
||||
@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.
|
||||
|
||||
@end ifset
|
||||
@end ifset
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user