aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/iq2000
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2016-10-26 10:10:40 -0600
committerJeff Law <law@gcc.gnu.org>2016-10-26 10:10:40 -0600
commit4b59261982271164ecdf6da1b8fbd38f0d871640 (patch)
tree8f6494df52605ef8cccee41e04b5d780f10babf4 /gcc/config/iq2000
parent0c57f4bf4ab7668d26024292b344debd675fbd53 (diff)
downloadgcc-4b59261982271164ecdf6da1b8fbd38f0d871640.zip
gcc-4b59261982271164ecdf6da1b8fbd38f0d871640.tar.gz
gcc-4b59261982271164ecdf6da1b8fbd38f0d871640.tar.bz2
iq2000.c (iq2000_function_arg): Adjust fallthru comment.
* config/iq2000/iq2000.c (iq2000_function_arg): Adjust fallthru comment. (expand_one_builtin): Add missing break. From-SVN: r241573
Diffstat (limited to 'gcc/config/iq2000')
-rw-r--r--gcc/config/iq2000/iq2000.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/iq2000/iq2000.c b/gcc/config/iq2000/iq2000.c
index 7be7ee5..2c936da 100644
--- a/gcc/config/iq2000/iq2000.c
+++ b/gcc/config/iq2000/iq2000.c
@@ -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]);