diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2007-05-26 12:17:52 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2007-05-26 12:17:52 +0000 |
commit | 4dad0aca146f96888dda601263e31f8621de1bae (patch) | |
tree | 903b6ffc6c810b13e3b3edeb9e468186e2ee4223 /gcc/omega.c | |
parent | 0ee8e25059355c772a3e7c7eb88d502496bc7922 (diff) | |
download | gcc-4dad0aca146f96888dda601263e31f8621de1bae.zip gcc-4dad0aca146f96888dda601263e31f8621de1bae.tar.gz gcc-4dad0aca146f96888dda601263e31f8621de1bae.tar.bz2 |
c-typeck.c, [...]: Fix typos and follow spelling conventions in various warning/error/diagnostic...
* c-typeck.c, config/arm/arm.c, config/darwin.c,
config/sh/symbian.c, gcc.c, ipa-cp.c, ipa-inline.c, loop-iv.c,
omega.c, tree-ssa-loop-niter.c, treestruct.def: Fix typos and
follow spelling conventions in various
warning/error/diagnostic messages.
From-SVN: r125089
Diffstat (limited to 'gcc/omega.c')
-rw-r--r-- | gcc/omega.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/omega.c b/gcc/omega.c index 9f5abaf..7b69300 100644 --- a/gcc/omega.c +++ b/gcc/omega.c @@ -1696,7 +1696,7 @@ normalize_omega_problem (omega_pb pb) if (dump_file && (dump_flags & TDF_DETAILS)) { fprintf (dump_file, - "Removing Redudant Equation: "); + "Removing Redundant Equation: "); omega_print_geq (dump_file, pb, &(pb->geqs[e2])); fprintf (dump_file, "\n"); fprintf (dump_file, @@ -1714,7 +1714,7 @@ normalize_omega_problem (omega_pb pb) { if (dump_file && (dump_flags & TDF_DETAILS)) { - fprintf (dump_file, "Removing Redudant Equation: "); + fprintf (dump_file, "Removing Redundant Equation: "); omega_print_geq (dump_file, pb, &(pb->geqs[e])); fprintf (dump_file, "\n"); fprintf (dump_file, "[b] Made Redundant by: "); @@ -1736,7 +1736,7 @@ normalize_omega_problem (omega_pb pb) { if (dump_file && (dump_flags & TDF_DETAILS)) { - fprintf (dump_file, "Removing Redudant Equation: "); + fprintf (dump_file, "Removing Redundant Equation: "); omega_print_geq (dump_file, pb, &(pb->geqs[e2])); fprintf (dump_file, "\n"); fprintf (dump_file, "[c] Made Redundant by: "); @@ -1750,7 +1750,7 @@ normalize_omega_problem (omega_pb pb) { if (dump_file && (dump_flags & TDF_DETAILS)) { - fprintf (dump_file, "Removing Redudant Equation: "); + fprintf (dump_file, "Removing Redundant Equation: "); omega_print_geq (dump_file, pb, &(pb->geqs[e])); fprintf (dump_file, "\n"); fprintf (dump_file, "[d] Made Redundant by: "); @@ -2094,7 +2094,7 @@ omega_eliminate_redundant (omega_pb pb, bool expensive) if (dump_file && (dump_flags & TDF_DETAILS)) { - fprintf (dump_file, "in eliminate Redudant:\n"); + fprintf (dump_file, "in eliminate Redundant:\n"); omega_print_problem (dump_file, pb); } @@ -4663,7 +4663,7 @@ omega_solve_geq (omega_pb pb, enum omega_result desired_res) if (dump_file && (dump_flags & TDF_DETAILS)) { - fprintf (dump_file, "lower bound coeeficients = "); + fprintf (dump_file, "lower bound coefficients = "); for (j = 0; j < lower_bounds; j++) fprintf (dump_file, " %d", @@ -4950,7 +4950,7 @@ omega_problem_has_red_equations (omega_pb pb) { if (!result) fprintf (dump_file, - "******************** Redudant Red Equations eliminated!!\n"); + "******************** Redundant Red Equations eliminated!!\n"); else fprintf (dump_file, "******************** Red Equations remain\n"); |