summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-02-01 17:57:48 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-02-01 17:57:48 +0000
commit39839b28696c11db816f20e455ceea3705224e20 (patch)
treee127a7b02d3f9f3688e8eeb4fa1e67b9166f16dd /gnu
parent55ceaa544f1aac04ac7521376ef49d5304f24b03 (diff)
Permit '-' in a mnemonic. This is needed for the new VIA C3 xmove-rng
and xcrypt-{ecb,cbc,cfb,ofb} instructions. This chagne is placed into the public domain, so someone get it back to FSF
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/binutils/gas/config/tc-i386.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/usr.bin/binutils/gas/config/tc-i386.c b/gnu/usr.bin/binutils/gas/config/tc-i386.c
index 65be0f0833d..71ddb20a042 100644
--- a/gnu/usr.bin/binutils/gas/config/tc-i386.c
+++ b/gnu/usr.bin/binutils/gas/config/tc-i386.c
@@ -924,6 +924,7 @@ md_begin ()
identifier_chars['@'] = '@';
#endif
digit_chars['-'] = '-';
+ mnemonic_chars['-'] = '-';
identifier_chars['_'] = '_';
identifier_chars['.'] = '.';