diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-09-04 14:26:20 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-09-04 14:26:20 +0000 |
commit | 711254da6c4cc0b0d786fae24e68d084b0af2a99 (patch) | |
tree | 1763ae34707936a3f5b0287089156a24df204de2 | |
parent | 1b68deb5993b35cb830dd32b75e91b3766002c4a (diff) | |
download | gdb-711254da6c4cc0b0d786fae24e68d084b0af2a99.zip gdb-711254da6c4cc0b0d786fae24e68d084b0af2a99.tar.gz gdb-711254da6c4cc0b0d786fae24e68d084b0af2a99.tar.bz2 |
* config/tc-mips.c (load_register): Remove unused variable tmp.
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index d83345d..b9ea5bb 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +Wed Sep 4 10:23:20 1996 Ian Lance Taylor <ian@cygnus.com> + + * config/tc-mips.c (load_register): Remove unused variable tmp. + Wed Sep 4 11:24:29 1996 James G. Smith <jsmith@cygnus.co.uk> * config/tc-mips.c (load_register): Remove unnecessary code that diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 9c285ff..35cd23b 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -1876,7 +1876,7 @@ load_register (counter, reg, ep, dbl) int dbl; { int shift, freg; - expressionS hi32, lo32, tmp; + expressionS hi32, lo32; if (ep->X_op != O_big) { |