diff options
author | Paul Brook <paul@codesourcery.com> | 2009-10-28 16:50:44 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2009-10-28 16:50:44 +0000 |
commit | 721a8186463bd0613adde0a0cfc46bb3c5d7bfdb (patch) | |
tree | 5b7b7841c8584504db0e2a4a45e9b2e6e8cd2e72 /gas/config | |
parent | c4dbc9afcc11c0d46e52bc6dafaabc76d8a3a143 (diff) | |
download | gdb-721a8186463bd0613adde0a0cfc46bb3c5d7bfdb.zip gdb-721a8186463bd0613adde0a0cfc46bb3c5d7bfdb.tar.gz gdb-721a8186463bd0613adde0a0cfc46bb3c5d7bfdb.tar.bz2 |
2009-10-28 Paul Brook <paul@codesourcery.com>
gas/
* config/tc-arm.c (opcode_lookup): Allow VFP/NEON type suffixes
unconditionally.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-arm.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 2c70923..22a3377 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -14955,14 +14955,11 @@ opcode_lookup (char **str) const struct asm_opcode *opcode; const struct asm_cond *cond; char save[2]; - bfd_boolean neon_supported; - - neon_supported = ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1); /* Scan up to the end of the mnemonic, which must end in white space, - '.' (in unified mode, or for Neon instructions), or end of string. */ + '.' (in unified mode, or for Neon/VFP instructions), or end of string. */ for (base = end = *str; *end != '\0'; end++) - if (*end == ' ' || ((unified_syntax || neon_supported) && *end == '.')) + if (*end == ' ' || *end == '.') break; if (end == base) |