diff options
author | Stephane Carrez <stcarrez@nerim.fr> | 2001-03-18 10:14:13 +0000 |
---|---|---|
committer | Stephane Carrez <stcarrez@nerim.fr> | 2001-03-18 10:14:13 +0000 |
commit | e629c13fd65b99b3385122adb22ee2f384550637 (patch) | |
tree | 8d1b58814ef042a9634e23ff563c794cde23275e | |
parent | 951b39209839e9458b9b5fb733d72e611565c383 (diff) | |
download | gdb-e629c13fd65b99b3385122adb22ee2f384550637.zip gdb-e629c13fd65b99b3385122adb22ee2f384550637.tar.gz gdb-e629c13fd65b99b3385122adb22ee2f384550637.tar.bz2 |
* config/tc-m68hc11.c (md_pseudo_table): Recognize xrefb to comply
with 'Motorola specification for assembly language input standard'.
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-m68hc11.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 08286f7..3f41a18 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2001-03-18 Stephane Carrez <Stephane.Carrez@worldnet.fr> + + * config/tc-m68hc11.c (md_pseudo_table): Recognize xrefb to comply + with 'Motorola specification for assembly language input standard'. + 2001-03-17 Richard Henderson <rth@redhat.com> * dwarf2dbg.c (user_filenum, user_filenum_allocated): Remove. diff --git a/gas/config/tc-m68hc11.c b/gas/config/tc-m68hc11.c index 634b536..d8e8545 100644 --- a/gas/config/tc-m68hc11.c +++ b/gas/config/tc-m68hc11.c @@ -231,6 +231,9 @@ const pseudo_typeS md_pseudo_table[] = { {"file", dwarf2_directive_file, 0}, {"loc", dwarf2_directive_loc, 0}, + /* Motorola ALIS. */ + {"xrefb", s_ignore, 0}, /* Same as xref */ + {0, 0, 0} }; |