aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2016-10-26 14:16:57 -0600
committerJeff Law <law@gcc.gnu.org>2016-10-26 14:16:57 -0600
commitd47e6b8225e7627df766d5026c6b722ae441ca6f (patch)
tree4358950893759266e82a1b4658dff7b72b653d49 /gcc
parent7574cfd44c1f73e2083c525e1a79ab716f7a994b (diff)
downloadgcc-d47e6b8225e7627df766d5026c6b722ae441ca6f.zip
gcc-d47e6b8225e7627df766d5026c6b722ae441ca6f.tar.gz
gcc-d47e6b8225e7627df766d5026c6b722ae441ca6f.tar.bz2
mips.c (mips16_constant_cost): Add missing fallthru comments.
* config/mips/mips.c (mips16_constant_cost): Add missing fallthru comments. (mips16_build_call_stub): Increase buffer size. Adjust fallthru comment. From-SVN: r241597
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/config/mips/mips.c6
2 files changed, 11 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 02a37f6..3e7704c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2016-10-26 Jeff Law <law@redhat.com>
+
+ * config/mips/mips.c (mips16_constant_cost): Add missing
+ fallthru comments.
+ (mips16_build_call_stub): Increase buffer size. Adjust
+ fallthru comment.
+
2016-10-26 David Malcolm <dmalcolm@redhat.com>
* print-rtl.c (rtx_writer::print_rtx_operand_code_u): Print
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c
index ebec68e..5c1a35a 100644
--- a/gcc/config/mips/mips.c
+++ b/gcc/config/mips/mips.c
@@ -3828,9 +3828,11 @@ mips16_constant_cost (int code, HOST_WIDE_INT x)
/* Like LE, but reject the always-true case. */
if (x == -1)
return -1;
+ /* FALLTHRU */
case LE:
/* We add 1 to the immediate and use SLT. */
x += 1;
+ /* FALLTHRU */
case XOR:
/* We can use CMPI for an xor with an unsigned 16-bit X. */
case LT:
@@ -7439,7 +7441,7 @@ mips16_build_call_stub (rtx retval, rtx *fn_ptr, rtx args_size, int fp_code)
if (GET_CODE (fn) != SYMBOL_REF
|| !call_insn_operand (fn, VOIDmode))
{
- char buf[30];
+ char buf[32];
rtx stub_fn, addr;
rtx_insn *insn;
bool lazy_p;
@@ -7635,7 +7637,7 @@ mips16_build_call_stub (rtx retval, rtx *fn_ptr, rtx args_size, int fp_code)
case DCmode:
mips_output_64bit_xfer ('f', GP_RETURN + (8 / UNITS_PER_WORD),
FP_REG_FIRST + 2);
- /* Fall though. */
+ /* FALLTHRU */
case DFmode:
case V2SFmode:
gcc_assert (TARGET_PAIRED_SINGLE_FLOAT