diff options
author | Bob Wilson <bob.wilson@acm.org> | 2005-04-11 22:45:37 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@acm.org> | 2005-04-11 22:45:37 +0000 |
commit | 2eccd1b41568e159361c86f73e0f70f2095297cb (patch) | |
tree | a5f695543645eb8a718b204b4c7ed73032924648 | |
parent | 01ed09aa8a3ced563c55a68e6f83b0a334b014a4 (diff) | |
download | gdb-2eccd1b41568e159361c86f73e0f70f2095297cb.zip gdb-2eccd1b41568e159361c86f73e0f70f2095297cb.tar.gz gdb-2eccd1b41568e159361c86f73e0f70f2095297cb.tar.bz2 |
* config/tc-xtensa.c (check_t1_t2_reads_and_writes): Fix typo.
-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 48976ca..e26006b 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-11 Mark Kettenis <kettenis@gnu.org> * configure.tgt (generic_target): Add support for OpenBSD/i386 ELF. 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) |