iq2000.c (iq2000_function_arg): Adjust fallthru comment.
authorJeff Law <law@redhat.com>
Wed, 26 Oct 2016 16:10:40 +0000 (10:10 -0600)
committerJeff Law <law@gcc.gnu.org>
Wed, 26 Oct 2016 16:10:40 +0000 (10:10 -0600)
* config/iq2000/iq2000.c (iq2000_function_arg): Adjust fallthru
comment.
(expand_one_builtin): Add missing break.

From-SVN: r241573

gcc/ChangeLog
gcc/config/iq2000/iq2000.c

index 4aec3eb1db48fe4125f641fbf5a891a5f628d065..afa456280a39f359c5766eeed2dca66b382820ae 100644 (file)
@@ -1,5 +1,9 @@
 2016-10-26  Jeff Law  <law@redhat.com>
 
+       * config/iq2000/iq2000.c (iq2000_function_arg): Adjust fallthru
+       comment.
+       (expand_one_builtin): Add missing break.
+
        * config/m32c/m32c.c (encode_pattern_1): Add fallthru comment.
        (m32c_legitimate_address_p): Likewise.
 
index 7be7ee52186c391c95149b5e3caa4db8ccb9c6ec..2c936da433605172b71cfc375a5b1e7354171bfd 100644 (file)
@@ -1244,7 +1244,7 @@ iq2000_function_arg (cumulative_args_t cum_v, machine_mode mode,
       gcc_assert (GET_MODE_CLASS (mode) == MODE_COMPLEX_INT
                  || GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT);
 
-      /* Drops through.  */
+      /* FALLTHRU */
     case BLKmode:
       if (type != NULL_TREE && TYPE_ALIGN (type) > (unsigned) BITS_PER_WORD)
        cum->arg_words += (cum->arg_words & 1);
@@ -2620,6 +2620,7 @@ expand_one_builtin (enum insn_code icode, rtx target, tree exp,
     {
     case 0:
        pat = GEN_FCN (icode) (target);
+       break;
     case 1:
       if (target)
        pat = GEN_FCN (icode) (target, op[0]);