aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2016-10-26 09:59:34 -0600
committerJeff Law <law@gcc.gnu.org>2016-10-26 09:59:34 -0600
commit0c15dfc1dc0716d882dda143a172d751367db7ec (patch)
tree1ac508a288bbc0ee2526c2f777cb4cdf51046418 /gcc
parent1cd20a8fdcb1b425ef73c359c19148a1745b4201 (diff)
downloadgcc-0c15dfc1dc0716d882dda143a172d751367db7ec.zip
gcc-0c15dfc1dc0716d882dda143a172d751367db7ec.tar.gz
gcc-0c15dfc1dc0716d882dda143a172d751367db7ec.tar.bz2
* config/mcore/mcore.c (mcore_gen_compare): Adjust fallthru comments.
From-SVN: r241569
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog2
-rw-r--r--gcc/config/mcore/mcore.c10
2 files changed, 7 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f4a4be0..560ec37 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,7 @@
2016-10-26 Jeff Law <law@redhat.com>
+ * config/mcore/mcore.c (mcore_gen_compare): Adjust fallthru comments.
+
* config/microblaze/microblaze.c (microblaze_function_arg): Adjust
fallthru comment.
diff --git a/gcc/config/mcore/mcore.c b/gcc/config/mcore/mcore.c
index b8dc2d0..bdb8431 100644
--- a/gcc/config/mcore/mcore.c
+++ b/gcc/config/mcore/mcore.c
@@ -611,7 +611,7 @@ mcore_gen_compare (enum rtx_code code, rtx op0, rtx op1)
case EQ: /* Use inverted condition, cmpne. */
code = NE;
invert = true;
- /* Drop through. */
+ /* FALLTHRU */
case NE: /* Use normal condition, cmpne. */
if (GET_CODE (op1) == CONST_INT && ! CONST_OK_FOR_K (INTVAL (op1)))
@@ -621,7 +621,7 @@ mcore_gen_compare (enum rtx_code code, rtx op0, rtx op1)
case LE: /* Use inverted condition, reversed cmplt. */
code = GT;
invert = true;
- /* Drop through. */
+ /* FALLTHRU */
case GT: /* Use normal condition, reversed cmplt. */
if (GET_CODE (op1) == CONST_INT)
@@ -631,7 +631,7 @@ mcore_gen_compare (enum rtx_code code, rtx op0, rtx op1)
case GE: /* Use inverted condition, cmplt. */
code = LT;
invert = true;
- /* Drop through. */
+ /* FALLTHRU */
case LT: /* Use normal condition, cmplt. */
if (GET_CODE (op1) == CONST_INT &&
@@ -646,7 +646,7 @@ mcore_gen_compare (enum rtx_code code, rtx op0, rtx op1)
gcc_assert (GET_CODE (op1) != CONST_INT || INTVAL (op1) != 0);
code = LEU;
invert = true;
- /* Drop through. */
+ /* FALLTHRU */
case LEU: /* Use normal condition, reversed cmphs. */
if (GET_CODE (op1) == CONST_INT && INTVAL (op1) != 0)
@@ -656,7 +656,7 @@ mcore_gen_compare (enum rtx_code code, rtx op0, rtx op1)
case LTU: /* Use inverted condition, cmphs. */
code = GEU;
invert = true;
- /* Drop through. */
+ /* FALLTHRU */
case GEU: /* Use normal condition, cmphs. */
if (GET_CODE (op1) == CONST_INT && INTVAL (op1) != 0)