diff options
author | Martin Storsjo <martin@martin.st> | 2014-06-06 07:29:19 +0100 |
---|---|---|
committer | Marcus Shawcroft <marcus.shawcroft@arm.com> | 2014-06-06 07:29:19 +0100 |
commit | 34fd659b79bed7333311a092e18f990e3bd31b2f (patch) | |
tree | 83f9909e107ed45ecb5b71f9ebd1b7c293224003 /gas/doc | |
parent | b8b91e982ec3235a24ce052cbd8bb0e4fe1464e0 (diff) | |
download | gdb-34fd659b79bed7333311a092e18f990e3bd31b2f.zip gdb-34fd659b79bed7333311a092e18f990e3bd31b2f.tar.gz gdb-34fd659b79bed7333311a092e18f990e3bd31b2f.tar.bz2 |
[AArch64] Fix the documentation on :pg_hi21:
Diffstat (limited to 'gas/doc')
-rw-r--r-- | gas/doc/c-aarch64.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gas/doc/c-aarch64.texi b/gas/doc/c-aarch64.texi index cce4f61..1f4ce4c 100644 --- a/gas/doc/c-aarch64.texi +++ b/gas/doc/c-aarch64.texi @@ -186,24 +186,24 @@ For example to load the 48-bit absolute address of @var{foo} into x0: @cindex ADRP, ADD, LDR/STR group relocations, AArch64 Relocations for @samp{ADRP}, and @samp{ADD}, @samp{LDR} or @samp{STR} instructions can be generated by prefixing the label with -@samp{#:pg_hi21:} and @samp{#:lo12:} respectively. +@samp{:pg_hi21:} and @samp{#:lo12:} respectively. For example to use 33-bit (+/-4GB) pc-relative addressing to load the address of @var{foo} into x0: @smallexample - adrp x0, #:pg_hi21:foo + adrp x0, :pg_hi21:foo add x0, x0, #:lo12:foo @end smallexample Or to load the value of @var{foo} into x0: @smallexample - adrp x0, #:pg_hi21:foo + adrp x0, :pg_hi21:foo ldr x0, [x0, #:lo12:foo] @end smallexample -Note that @samp{#:pg_hi21:} is optional. +Note that @samp{:pg_hi21:} is optional. @smallexample adrp x0, foo @@ -212,7 +212,7 @@ Note that @samp{#:pg_hi21:} is optional. is equivalent to @smallexample - adrp x0, #:pg_hi21:foo + adrp x0, :pg_hi21:foo @end smallexample @node AArch64 Floating Point |