diff options
author | Bob Wilson <bob.wilson@acm.org> | 2005-04-11 22:51:52 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@acm.org> | 2005-04-11 22:51:52 +0000 |
commit | 491df5eebbce53f7b8412e103005fd0d5a8391e4 (patch) | |
tree | 0794a10231c8ecdb78be268fdcd1d0a91dcaa1bb /gas | |
parent | 596b4ac167e1817c113be7c1e6d9b570699c833c (diff) | |
download | gdb-491df5eebbce53f7b8412e103005fd0d5a8391e4.zip gdb-491df5eebbce53f7b8412e103005fd0d5a8391e4.tar.gz gdb-491df5eebbce53f7b8412e103005fd0d5a8391e4.tar.bz2 |
* config/tc-xtensa.c (check_t1_t2_reads_and_writes): Fix typo.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-xtensa.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 91ca2f7..ea91711 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2005-04-11 Sterling Augustine <sterling@tensilica.com> + Bob Wilson <bob.wilson@acm.org> + + * config/tc-xtensa.c (check_t1_t2_reads_and_writes): Fix typo. + 2005-04-08 Bob Wilson <bob.wilson@acm.org> * config/tc-xtensa.c (xtensa_create_xproperty_segments): Skip diff --git a/gas/config/tc-xtensa.c b/gas/config/tc-xtensa.c index 188987d..0dadbfb 100644 --- a/gas/config/tc-xtensa.c +++ b/gas/config/tc-xtensa.c @@ -6421,7 +6421,7 @@ check_t1_t2_reads_and_writes (TInsn *t1, TInsn *t2) { xtensa_interface t1_int = xtensa_interfaceOperand_interface (isa, t1->opcode, j); - int t1_class = xtensa_interface_class_id (isa, t2_int); + int t1_class = xtensa_interface_class_id (isa, t1_int); t1_inout = xtensa_interface_inout (isa, i); if (xtensa_interface_has_side_effect (isa, t1_int) == 1) |