diff options
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 58deca7eb29..8a548107485 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -2567,7 +2567,7 @@ operand_equal_p (const_tree arg0, const_tree arg1, unsigned int flags) return OP_SAME (0); case TARGET_MEM_REF: - /* Require equal extra operands and then fall thru to MEM_REF + /* Require equal extra operands and then fall through to MEM_REF handling of the two common operands. */ if (!OP_SAME_WITH_NULL (2) || !OP_SAME_WITH_NULL (3) @@ -12018,7 +12018,7 @@ fold_binary_loc (location_t loc, } } - /* Fall thru */ + /* Fall through */ case FLOOR_DIV_EXPR: /* Simplify A / (B << N) where A and B are positive and B is @@ -12061,7 +12061,7 @@ fold_binary_loc (location_t loc, && code == FLOOR_DIV_EXPR) return fold_build2_loc (loc, TRUNC_DIV_EXPR, type, op0, op1); - /* Fall thru */ + /* Fall through */ case ROUND_DIV_EXPR: case CEIL_DIV_EXPR: |