diff options
author | Thiemo Seufer <ths@networkno.de> | 2006-08-12 23:00:35 +0000 |
---|---|---|
committer | Thiemo Seufer <ths@networkno.de> | 2006-08-12 23:00:35 +0000 |
commit | 3a93f742d49b6105c22520ae7bf3d84a5f789be0 (patch) | |
tree | a92ee83ed4f223e53d17fcc70c86b252ba97fed5 /gas/config/tc-mips.c | |
parent | 9e320ba497f45375175477f3f8b9a280b8771a4f (diff) | |
download | gdb-3a93f742d49b6105c22520ae7bf3d84a5f789be0.zip gdb-3a93f742d49b6105c22520ae7bf3d84a5f789be0.tar.gz gdb-3a93f742d49b6105c22520ae7bf3d84a5f789be0.tar.bz2 |
[ gas/ChangeLog ]
* config/tc-mips.c (mips16_ip): Fix argument register handling
for restore instruction.
[ gas/testsuite/ChangeLog ]
* gas/mips/mips16-save.d: Fix testcase.
Diffstat (limited to 'gas/config/tc-mips.c')
-rw-r--r-- | gas/config/tc-mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index e891454..0a8c48d 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -10201,7 +10201,7 @@ mips16_ip (char *str, struct mips_cl_insn *ip) { if (reg1 >= 4 && reg1 <= 7) { - if (c == 'm' && !seen_framesz) + if (!seen_framesz) /* args $a0-$a3 */ args |= 1 << (reg1 - 4); else |