diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-04-18 20:59:20 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-04-18 20:59:20 +0000 |
commit | 791fe849086c2dccfa31932b388ab51f75f6a368 (patch) | |
tree | a9164f82292dcce23f8936e8183fa3e67b34ef79 /gas/config/tc-i386.c | |
parent | 0cc748c077b0380238ce783bb406cf96165b9bf1 (diff) | |
download | gdb-791fe849086c2dccfa31932b388ab51f75f6a368.zip gdb-791fe849086c2dccfa31932b388ab51f75f6a368.tar.gz gdb-791fe849086c2dccfa31932b388ab51f75f6a368.tar.bz2 |
gas/ChangeLog:
* config/tc-i386.c (md_begin): Allow hyphens in mnemonics.
include/opcode/ChangeLog:
* i386.h: Insert hyphens into selected VIA PadLock extensions.
Add xcrypt-ctr. Provide aliases without hyphens.
opcodes/ChangeLog:
* i386-dis.c: Insert hyphens into selected VIA PadLock extensions.
Add xcrypt-ctr.
Diffstat (limited to 'gas/config/tc-i386.c')
-rw-r--r-- | gas/config/tc-i386.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 6aeb827..4defd01 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -1008,6 +1008,7 @@ md_begin () operand_chars['?'] = '?'; #endif digit_chars['-'] = '-'; + mnemonic_chars['-'] = '-'; identifier_chars['_'] = '_'; identifier_chars['.'] = '.'; |