mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-30 00:52:16 +08:00
PR gas/3172
* config/tc-arm.c (parse_typed_reg_or_scalar): Accept wCg class registers as a sub-class of wC registers.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2006-09-11 Tomas Frydrych <dr.tomas@yahoo.co.uk>
|
||||||
|
|
||||||
|
PR gas/3172
|
||||||
|
* config/tc-arm.c (parse_typed_reg_or_scalar): Accept wCg class
|
||||||
|
registers as a sub-class of wC registers.
|
||||||
|
|
||||||
2006-09-11 Alan Modra <amodra@bigpond.net.au>
|
2006-09-11 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
PR gas/3165
|
PR gas/3165
|
||||||
|
@ -1261,7 +1261,9 @@ parse_typed_reg_or_scalar (char **ccp, enum arm_reg_type type,
|
|||||||
&& (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
|
&& (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD))
|
||||||
|| (type == REG_TYPE_NSDQ
|
|| (type == REG_TYPE_NSDQ
|
||||||
&& (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD
|
&& (reg->type == REG_TYPE_VFS || reg->type == REG_TYPE_VFD
|
||||||
|| reg->type == REG_TYPE_NQ)))
|
|| reg->type == REG_TYPE_NQ))
|
||||||
|
|| (type == REG_TYPE_MMXWC
|
||||||
|
&& (reg->type == REG_TYPE_MMXWCG)))
|
||||||
type = reg->type;
|
type = reg->type;
|
||||||
|
|
||||||
if (type != reg->type)
|
if (type != reg->type)
|
||||||
|
Reference in New Issue
Block a user