diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2011-10-24 14:25:01 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2011-10-24 14:25:01 +0000 |
commit | 7951ca422a45989cd898cb6e6d18c3388d49985d (patch) | |
tree | 660faa2ccc6cc5e3d6076a35bfcc5dcfd7b10976 /gas | |
parent | 26f85d7a30c095103c3f7a3b4d28ebfb5d490df1 (diff) | |
download | gdb-7951ca422a45989cd898cb6e6d18c3388d49985d.zip gdb-7951ca422a45989cd898cb6e6d18c3388d49985d.tar.gz gdb-7951ca422a45989cd898cb6e6d18c3388d49985d.tar.bz2 |
* config/tc-mips.c (move_register): Fix formatting.
Diffstat (limited to 'gas')
-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 581bc70..41972b2 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,9 @@ 2011-10-24 Maciej W. Rozycki <macro@codesourcery.com> + * config/tc-mips.c (move_register): Fix formatting. + +2011-10-24 Maciej W. Rozycki <macro@codesourcery.com> + * config/tc-mips.c (can_swap_branch_p): Remove empty line. (start_noreorder): Likewise. diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 0eb15cf..28f124a 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -5945,7 +5945,7 @@ move_register (int dest, int source) instruction specifically requires a 32-bit one. */ if (mips_opts.micromips && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT)) - macro_build (NULL, "move", "mp,mj", dest, source ); + macro_build (NULL, "move", "mp,mj", dest, source); else macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t", dest, source, 0); |