diff options
author | Jan Beulich <jbeulich@novell.com> | 2005-02-14 08:02:51 +0000 |
---|---|---|
committer | Jan Beulich <jbeulich@novell.com> | 2005-02-14 08:02:51 +0000 |
commit | f1dab70d1a825b97aac510777cc023dc3b6ff8f4 (patch) | |
tree | b2ec962009912594020e3c580a2d1a67dd776b32 /gas/doc/c-ia64.texi | |
parent | 20b36a95ab568a0de00130164834322706e59d1d (diff) | |
download | gdb-f1dab70d1a825b97aac510777cc023dc3b6ff8f4.zip gdb-f1dab70d1a825b97aac510777cc023dc3b6ff8f4.tar.gz gdb-f1dab70d1a825b97aac510777cc023dc3b6ff8f4.tar.bz2 |
gas/
2005-02-13 Jan Beulich <jbeulich@novell.com>
* config/tc-ia64.c (md_parse_option): Handle -xnone and -xdebugn.
(md_show_usage): Add -xnone, -xdebugn, and -xdebugx. Relocate default
indicator.
(ia64_init): Set md.detect_dv.
(ia64_start_line): New static variable warned. Warn only once when
encountering explicit stops in automatic mode.
* doc/c-ia64.texi: Describe -xnone, -xdebugn, and -xdebugx.
* NEWS: Mention new default mode.
gas/testsuite/
2005-02-13 Jan Beulich <jbeulich@novell.com>
* gas/ia64/label.l: Adjust line numbers.
* gas/ia64/label.s: Add .explicit.
* gas/ia64/nop_x.s: Likewise.
* gas/ia64/opc-a.d: Add assembler option -xnone.
* gas/ia64/opc-b.d: Likewise.
* gas/ia64/opc-f.d: Likewise.
* gas/ia64/opc-i.d: Likewise.
* gas/ia64/opc-m.d: Likewise.
* gas/ia64/opc-x.d: Likewise.
* gas/ia64/pseudo.d: Likewise.
* gas/ia64/regs.d: Likewise.
* gas/ia64/tls.d: Likewise.
* gas/ia64/unwind-err.l: Adjust line numbers.
* gas/ia64/unwind-err.s: Remove explicit stops.
ld/testsuite/
2005-02-13 Jan Beulich <jbeulich@novell.com>
* ld-elfvers/vers.exp (as_options): New. Set to -x for ia64.
(build_binary): Pass as_options to ld_assemble.
(test_ldfail): Likewise.
(build_exec): Likewise.
Pass as_options to run_ld_link_tests.
* ld-ia64/tlsbin.s: Add .explicit.
* ld-ia64/tlsbinpic.s: Likewise.
* ld-ia64/tlspic1.s: Likewise.
Diffstat (limited to 'gas/doc/c-ia64.texi')
-rw-r--r-- | gas/doc/c-ia64.texi | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/gas/doc/c-ia64.texi b/gas/doc/c-ia64.texi index cfe6469..4858cb9 100644 --- a/gas/doc/c-ia64.texi +++ b/gas/doc/c-ia64.texi @@ -75,17 +75,25 @@ assembler issue an error when an unwind directive check fails. @item -x @item -xexplicit -These options turn on dependency violation checking. This checking is turned on by -default. +These options turn on dependency violation checking. @item -xauto This option instructs the assembler to automatically insert stop bits where necessary -to remove dependency violations. +to remove dependency violations. This is the default mode. + +@item -xnone +This option turns off dependency violation checking. @item -xdebug This turns on debug output intended to help tracking down bugs in the dependency violation checker. +@item -xdebugn +This is a shortcut for -xnone -xdebug. + +@item -xdebugx +This is a shortcut for -xexplicit -xdebug. + @end table @cindex IA-64 Syntax |