diff options
author | Jiong Wang <jiong.wang@arm.com> | 2015-02-03 14:02:24 +0000 |
---|---|---|
committer | Jiong Wang <jiong.wang@arm.com> | 2015-02-03 14:02:24 +0000 |
commit | 8e02d7f52092fe95f29d006e1df45b110490adc1 (patch) | |
tree | d7adf324b9bf185a71262f0d258f852f3937ffce /gas/doc/c-aarch64.texi | |
parent | 6d012254d46550b0930705b132ad9a49479573b6 (diff) | |
download | gdb-8e02d7f52092fe95f29d006e1df45b110490adc1.zip gdb-8e02d7f52092fe95f29d006e1df45b110490adc1.tar.gz gdb-8e02d7f52092fe95f29d006e1df45b110490adc1.tar.bz2 |
[AARCH64] Document .arch and .arch_extension directive
2015-02-03 Renlin Li <renlin.li@arm.com>
gas/
* doc/c-aarch64.texi (.arch): Document the directive.
(.arch_extension): Likewise.
Diffstat (limited to 'gas/doc/c-aarch64.texi')
-rw-r--r-- | gas/doc/c-aarch64.texi | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gas/doc/c-aarch64.texi b/gas/doc/c-aarch64.texi index 3488a1f..508dd11 100644 --- a/gas/doc/c-aarch64.texi +++ b/gas/doc/c-aarch64.texi @@ -232,6 +232,24 @@ The AArch64 architecture uses @sc{ieee} floating-point numbers. @table @code @c AAAAAAAAAAAAAAAAAAAAAAAAA + +@cindex @code{.arch} directive, AArch64 +@item .arch @var{name} +Select the target architecture. Valid values for @var{name} are the same as +for the @option{-march} commandline option. + +Specifying @code{.arch} clears any previously selected architecture +extensions. + +@cindex @code{.arch_extension} directive, AArch64 +@item .arch_extension @var{name} +Add or remove an architecture extension to the target architecture. Valid +values for @var{name} are the same as those accepted as architectural +extensions by the @option{-mcpu} commandline option. + +@code{.arch_extension} may be used multiple times to add or remove extensions +incrementally to the architecture being compiled for. + @c BBBBBBBBBBBBBBBBBBBBBBBBBB @cindex @code{.bss} directive, AArch64 |