diff options
author | Paul Brook <paul@codesourcery.com> | 2006-02-02 20:19:56 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2006-02-02 20:19:56 +0000 |
commit | a9931606c273de874d3d8ce5e33831d3c9390f7a (patch) | |
tree | f833dfda0face7693fe86cf6b8fa6a9aa372498d | |
parent | ef8d22e63b889bff1ac315e95eb33b78c7ea8949 (diff) | |
download | gdb-a9931606c273de874d3d8ce5e33831d3c9390f7a.zip gdb-a9931606c273de874d3d8ce5e33831d3c9390f7a.tar.gz gdb-a9931606c273de874d3d8ce5e33831d3c9390f7a.tar.bz2 |
2006-02-02 Paul Brook <paul@codesourcery.com>
* config/tc-arm.c (do_shift): Remove Thumb-1 constraint.
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index e35956e..ca85d59 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2006-02-02 Paul Brook <paul@codesourcery.com> + + * config/tc-arm.c (do_shift): Remove Thumb-1 constraint. + 2005-02-02 Paul Brook <paul@codesourcery.com> * config/tc-arm.c (T2_OPCODE_MASK, T2_DATA_OP_SHIFT, T2_OPCODE_AND, diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 8cf49ea..4ff2a7d 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -5278,8 +5278,6 @@ do_shift (void) inst.instruction |= Rm; if (inst.operands[2].isreg) /* Rd, {Rm,} Rs */ { - constraint (inst.operands[0].reg != Rm, - _("source1 and dest must be same register")); inst.instruction |= inst.operands[2].reg << 8; inst.instruction |= SHIFT_BY_REG; } |