diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2013-02-18 14:02:02 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2013-02-18 14:02:02 +0000 |
commit | 79850f26184ab514a27ac35f265fe842bd892cdd (patch) | |
tree | 1012a5436cdda62923430f1c86fbba820ac46bac /gas | |
parent | d45f8bdadc6f438c13db38f5f92dd1517f240f5a (diff) | |
download | gdb-79850f26184ab514a27ac35f265fe842bd892cdd.zip gdb-79850f26184ab514a27ac35f265fe842bd892cdd.tar.gz gdb-79850f26184ab514a27ac35f265fe842bd892cdd.tar.bz2 |
* config/tc-mips.c (append_insn): Correcting indentation, remove
extraneous braces.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 62eeee3..01dcddd 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2013-02-18 Maciej W. Rozycki <macro@codesourcery.com> + + * config/tc-mips.c (append_insn): Correcting indentation, remove + extraneous braces. + 2013-02-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com> * config/tc-arm.c (do_neon_mov): Break on NS_NULL. diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 964efdd..3d472f9 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -4644,12 +4644,10 @@ append_insn (struct mips_cl_insn *ip, expressionS *address_expr, { unsigned int i; - mips_no_prev_insn (); + mips_no_prev_insn (); for (i = 0; i < ARRAY_SIZE (history); i++) - { - history[i].cleared_p = 1; - } + history[i].cleared_p = 1; } /* We need to emit a label at the end of branch-likely macros. */ |