alpha.c, [...]: Revert the replacements of "FALLTHRU" with "Fall through" done in...
authorKazu Hirata <kazu@cs.umass.edu>
Wed, 4 Feb 2004 20:27:12 +0000 (20:27 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Wed, 4 Feb 2004 20:27:12 +0000 (20:27 +0000)
* config/alpha/alpha.c, config/arc/arc.c, config/avr/avr.c,
config/i386/i386.c, config/i386/i386.h, config/i386/i386.md,
config/ia64/ia64.c, config/ia64/unwind-ia64.c,
config/m32r/m32r.c, config/ns32k/ns32k.c, config/pa/pa.c,
config/pdp11/pdp11.c, config/rs6000/rs6000.c,
config/sparc/sparc.c, config/vax/vax.c: Revert the
replacements of "FALLTHRU" with "Fall through" done in the
previous patch.

From-SVN: r77269

16 files changed:
gcc/ChangeLog
gcc/config/alpha/alpha.c
gcc/config/arc/arc.c
gcc/config/avr/avr.c
gcc/config/i386/i386.c
gcc/config/i386/i386.h
gcc/config/i386/i386.md
gcc/config/ia64/ia64.c
gcc/config/ia64/unwind-ia64.c
gcc/config/m32r/m32r.c
gcc/config/ns32k/ns32k.c
gcc/config/pa/pa.c
gcc/config/pdp11/pdp11.c
gcc/config/rs6000/rs6000.c
gcc/config/sparc/sparc.c
gcc/config/vax/vax.c

index fff02fd393887fa5a51e58a6d259a5be8f44d68f..db2f9aed92dc621bba225f417b0252a1f2c38829 100644 (file)
@@ -1,3 +1,14 @@
+2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * config/alpha/alpha.c, config/arc/arc.c, config/avr/avr.c,
+       config/i386/i386.c, config/i386/i386.h, config/i386/i386.md,
+       config/ia64/ia64.c, config/ia64/unwind-ia64.c,
+       config/m32r/m32r.c, config/ns32k/ns32k.c, config/pa/pa.c,
+       config/pdp11/pdp11.c, config/rs6000/rs6000.c,
+       config/sparc/sparc.c, config/vax/vax.c: Revert the
+       replacements of "FALLTHRU" with "Fall through" done in the
+       previous patch.
+
 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
 
        * config/darwin.c, config/darwin.h, config/freebsd-spec.h,
index 10dbb7528cda8aa08513d3a7b1ffdc374a927e87..b1eb7f69b4f764bf055a6f36e8ceb3fcb475973d 100644 (file)
@@ -2112,7 +2112,7 @@ alpha_rtx_costs (rtx x, int code, int outer_code, int *total)
          *total = 0;
          return true;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case CONST_DOUBLE:
       if (x == CONST0_RTX (mode))
@@ -2170,7 +2170,7 @@ alpha_rtx_costs (rtx x, int code, int outer_code, int *total)
          *total = COSTS_N_INSNS (1);
          return false;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case ASHIFTRT:
     case LSHIFTRT:
@@ -2206,7 +2206,7 @@ alpha_rtx_costs (rtx x, int code, int outer_code, int *total)
          *total = COSTS_N_INSNS (1);
          return false;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case ABS:
       if (! float_mode_p)
@@ -2214,7 +2214,7 @@ alpha_rtx_costs (rtx x, int code, int outer_code, int *total)
          *total = COSTS_N_INSNS (1) + alpha_rtx_cost_data[alpha_cpu].int_cmov;
          return false;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case FLOAT:
     case UNSIGNED_FLOAT:
@@ -3275,7 +3275,7 @@ alpha_emit_setcc (enum rtx_code code)
     case NE:
       if (!fp_p && op1 == const0_rtx)
        break;
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case ORDERED:
       cmp_code = reverse_condition (code);
@@ -3708,7 +3708,7 @@ alpha_emit_xfloating_libcall (const char *func, rtx target, rtx operands[],
        case VOIDmode:
          if (GET_CODE (operands[i]) != CONST_INT)
            abort ();
-         /* Fall through.  */
+         /* FALLTHRU */
        case DImode:
          reg = gen_rtx_REG (DImode, regno);
          regno += 1;
@@ -6081,7 +6081,7 @@ function_value (tree valtype, tree func ATTRIBUTE_UNUSED,
     case MODE_INT:
       /* Do the same thing as PROMOTE_MODE.  */
       mode = DImode;
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case MODE_COMPLEX_INT:
     case MODE_VECTOR_INT:
index 4ac3e2a72d2f0d43b57cfaf04403b045933007b5..e8e40199177f493e807f282faef337d3fb639380 100644 (file)
@@ -834,7 +834,7 @@ arc_rtx_costs (rtx x, int code, int outer_code ATTRIBUTE_UNUSED, int *total)
          *total = 0;
          return true;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case CONST:
     case LABEL_REF:
index 716667a2ae26a9c574f1ede22eafe043265f9f38..331f7cdfa648e0063415ff3aea11f01b11e964dc 100644 (file)
@@ -4825,7 +4825,7 @@ avr_rtx_costs (rtx x, int code, int outer_code, int *total)
          *total = 2;
          return true;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case CONST:
     case LABEL_REF:
index 13f30d23b1cc194876dbcacc820b8975da99bdc4..6a0701cbfebc261981ea542b6965d790bdefbfd8 100644 (file)
@@ -2573,7 +2573,7 @@ function_arg (CUMULATIVE_ARGS *cum,       /* current arg information */
       case BLKmode:
        if (bytes < 0)
          break;
-       /* Fall through.  */
+       /* FALLTHRU */
       case DImode:
       case SImode:
       case HImode:
@@ -5836,7 +5836,7 @@ legitimate_pic_operand_p (rtx x)
          default:
            return false;
          }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case SYMBOL_REF:
     case LABEL_REF:
@@ -6712,7 +6712,7 @@ output_pic_addr_const (FILE *file, rtx x, int code)
 
     case LABEL_REF:
       x = XEXP (x, 0);
-      /* Fall through.  */
+      /* FALLTHRU */
     case CODE_LABEL:
       ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
       assemble_name (asm_out_file, buf);
@@ -7100,13 +7100,13 @@ print_reg (rtx x, int code, FILE *file)
          fputs ("st(0)", file);
          break;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
     case 8:
     case 4:
     case 12:
       if (! ANY_FP_REG_P (x))
        putc (code == 8 && TARGET_64BIT ? 'r' : 'e', file);
-      /* Fall through.  */
+      /* FALLTHRU */
     case 16:
     case 2:
     normal:
@@ -8630,15 +8630,15 @@ ix86_match_ccmode (rtx insn, enum machine_mode req_mode)
     case CCmode:
       if (req_mode == CCGCmode)
        return 0;
-      /* Fall through.  */
+      /* FALLTHRU */
     case CCGCmode:
       if (req_mode == CCGOCmode || req_mode == CCNOmode)
        return 0;
-      /* Fall through.  */
+      /* FALLTHRU */
     case CCGOCmode:
       if (req_mode == CCZmode)
        return 0;
-      /* Fall through.  */
+      /* FALLTHRU */
     case CCZmode:
       break;
 
@@ -14653,7 +14653,7 @@ ix86_force_to_memory (enum machine_mode mode, rtx operand)
        case HImode:
        case SImode:
          operand = gen_lowpart (DImode, operand);
-         /* Fall through.  */
+         /* FALLTHRU */
        case DImode:
          emit_insn (
                      gen_rtx_SET (VOIDmode,
@@ -14693,7 +14693,7 @@ ix86_force_to_memory (enum machine_mode mode, rtx operand)
          /* It is better to store HImodes as SImodes.  */
          if (!TARGET_PARTIAL_REG_STALL)
            operand = gen_lowpart (SImode, operand);
-         /* Fall through.  */
+         /* FALLTHRU */
        case SImode:
          emit_insn (
                      gen_rtx_SET (VOIDmode,
@@ -15058,7 +15058,7 @@ ix86_rtx_costs (rtx x, int code, int outer_code, int *total)
              return false;
            }
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case ROTATE:
     case ASHIFTRT:
@@ -15166,7 +15166,7 @@ ix86_rtx_costs (rtx x, int code, int outer_code, int *total)
              return true;
            }
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case MINUS:
       if (FLOAT_MODE_P (mode))
@@ -15174,7 +15174,7 @@ ix86_rtx_costs (rtx x, int code, int outer_code, int *total)
          *total = COSTS_N_INSNS (ix86_cost->fadd);
          return false;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case AND:
     case IOR:
@@ -15188,7 +15188,7 @@ ix86_rtx_costs (rtx x, int code, int outer_code, int *total)
                       << (GET_MODE (XEXP (x, 1)) != DImode)));
          return true;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case NEG:
       if (FLOAT_MODE_P (mode))
@@ -15196,7 +15196,7 @@ ix86_rtx_costs (rtx x, int code, int outer_code, int *total)
          *total = COSTS_N_INSNS (ix86_cost->fchs);
          return false;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case NOT:
       if (!TARGET_64BIT && mode == DImode)
index a2ef75e93ac58a784621f34c70e97081d6a606bb..46bb52277ed8df4b7f86a7dbb1e9672cdee6467c 100644 (file)
@@ -580,7 +580,7 @@ extern int x86_prefetch_sse;
            {                                                   \
            case '3':                                           \
              builtin_define ("__tune_pentium3__");             \
-             /* Fall through.  */                              \
+             /* FALLTHRU */                                    \
            case '2':                                           \
              builtin_define ("__tune_pentium2__");             \
              break;                                            \
index b03d4a413da5ee79cd6a4d1a9c7840fee248476b..2c7bbb4a1ffe79b7ec79accbb89087416e8c0218 100644 (file)
     case TYPE_SSEMOV:
       if (get_attr_mode (insn) == MODE_TI)
          return "movdqa\t{%1, %0|%0, %1}";
-      /* Fall through.  */
+      /* FALLTHRU */
     case TYPE_MMXMOV:
       /* Moves from and into integer register is done using movd opcode with
         REX prefix.  */
     case TYPE_SSEMOV:
       if (get_attr_mode (insn) == MODE_TI)
          return "movdqa\t{%1, %0|%0, %1}";
-      /* Fall through.  */
+      /* FALLTHRU */
     case TYPE_MMXMOV:
       return "movq\t{%1, %0|%0, %1}";
     case TYPE_MULTI:
index e7800b40b329e7d60abbf66629cc115021dea58a..449b136341db20ed1d1afe3d8eb9f967a3600fb2 100644 (file)
@@ -425,7 +425,7 @@ sdata_symbolic_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
          || GET_CODE (XEXP (XEXP (op, 0), 0)) != SYMBOL_REF)
        break;
       op = XEXP (XEXP (op, 0), 0);
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case SYMBOL_REF:
       if (CONSTANT_POOL_ADDRESS_P (op))
@@ -5299,7 +5299,7 @@ rtx_needs_barrier (rtx x, struct reg_flags flags, int pred)
 
     case SUBREG:
       x = SUBREG_REG (x);
-      /* Fall through.  */
+      /* FALLTHRU */
     case REG:
       if (REGNO (x) == AR_UNAT_REGNUM)
        {
@@ -5550,7 +5550,7 @@ group_barrier_needed_p (rtx insn)
          need_barrier = 1;
          break;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case INSN:
       if (GET_CODE (PATTERN (insn)) == USE
index ffb4614638cde95c1a24a3044bea6496783b4e5c..29c63fa13a7d2e5e301d3206a4f7ad714bd5e738 100644 (file)
@@ -1614,7 +1614,7 @@ unw_access_gr (struct _Unwind_Context *info, int regnum,
                  *nat = 1;
                  return;
                }
-             /* Fall through.  */
+             /* FALLTHRU */
 
            case UNW_NAT_NONE:
              dummy_nat = 0;
index 9ebae494f62dd975078e7144d3474d2c0fc3a59d..849c73f3a60421fe5c8da27df1f1490b1bacc867 100644 (file)
@@ -1689,7 +1689,7 @@ m32r_rtx_costs (rtx x, int code, int outer_code ATTRIBUTE_UNUSED, int *total)
          *total = 0;
          return true;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case CONST:
     case LABEL_REF:
index 5eb6ce091138be658a18e49d6583ee6780e68ee3..5b633ec0233c68405f909ac531ed73c317bc340e 100644 (file)
@@ -598,7 +598,7 @@ ns32k_address_cost (rtx operand)
 
     case MULT:
       cost += 2;
-      /* Fall through.  */
+      /* FALLTHRU */
     case PLUS:
       cost += ns32k_address_cost (XEXP (operand, 0));
       cost += ns32k_address_cost (XEXP (operand, 1));
index f07e1e45d0db44b581bfe8d908e29fefcc6c9abe..0cce6a9e376e46df16b5211e5bb1376b87570726 100644 (file)
@@ -1432,7 +1432,7 @@ hppa_rtx_costs (rtx x, int code, int outer_code, int *total)
          *total = COSTS_N_INSNS (14);
          return true;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case UDIV:
     case MOD:
index 10939c5ca70949640eedc7be7cb43b7a6ea771a2..9102dcdd3a002a2d8777e818215ebcad55614853 100644 (file)
@@ -1084,7 +1084,7 @@ pdp11_rtx_costs (rtx x, int code, int outer_code ATTRIBUTE_UNUSED, int *total)
          *total = 0;
          return true;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case CONST:
     case LABEL_REF:
index b0489f6e5a60f7079908dbc743cb87b52da4120d..27aef803b72a77921268053c36be6a9409c39a2c 100644 (file)
@@ -8974,7 +8974,7 @@ print_operand (FILE *file, rtx x, int code)
     case 'Q':
       if (TARGET_MFCRF)
        fputc (',',file);
-        /* Fall through.  */
+        /* FALLTHRU */
       else
        return;
 
@@ -15581,7 +15581,7 @@ rs6000_rtx_costs (rtx x, int code, int outer_code ATTRIBUTE_UNUSED,
          *total = COSTS_N_INSNS (2);
          return true;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case UDIV:
     case UMOD:
index e8cf905337828344e8e73bd418f6ef6141c805c5..29b6744fd3f86daa45e4ba7b29139f53bf78e056 100644 (file)
@@ -8440,7 +8440,7 @@ sparc_rtx_costs (rtx x, int code, int outer_code, int *total)
          *total = 0;
          return true;
        }
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case HIGH:
       *total = 2;
index 47527a4eafc6f2cb068c2205f1882e68aecd25b4..7695d6964f833e7703fb59bc7079772834f3e493 100644 (file)
@@ -557,7 +557,7 @@ vax_rtx_costs_1 (register rtx x, enum rtx_code code, enum rtx_code outer_code)
         return 1;
       if (outer_code == PLUS && (unsigned HOST_WIDE_INT) -INTVAL (x) <= 077)
         return 1;
-      /* Fall through.  */
+      /* FALLTHRU */
 
     case CONST:
     case LABEL_REF: