diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-01-17 14:24:24 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-01-17 14:24:24 +0000 |
commit | fbe5a4a607f0dcb330bbb63e041c1dfaf63c883b (patch) | |
tree | 2cb49286c2dc56eb4c87f9c8f6bf3d0ed54ea367 /gcc/flags.h | |
parent | 095f90933f648fbf24528d7a7aecf76399f3e743 (diff) | |
download | gcc-fbe5a4a607f0dcb330bbb63e041c1dfaf63c883b.zip gcc-fbe5a4a607f0dcb330bbb63e041c1dfaf63c883b.tar.gz gcc-fbe5a4a607f0dcb330bbb63e041c1dfaf63c883b.tar.bz2 |
et-forest.c: Fix comment typos.
* et-forest.c: Fix comment typos.
* et-forest.h: Likewise.
* except.c: Likewise.
* expr.c: Likewise.
* flags.h: Likewise.
* flow.c: Likewise.
* gcc.c: Likewise.
* gcse.c: Likewise.
* genattrtab.c: Likewise.
* genautomata.c: Likewise.
* gengtype.c: Likewise.
* genrecog.c: Likewise.
* global.c: Likewise.
* gthr-rtems.h: Likewise.
From-SVN: r61443
Diffstat (limited to 'gcc/flags.h')
-rw-r--r-- | gcc/flags.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/flags.h b/gcc/flags.h index 39ca5ea..e7923e8 100644 --- a/gcc/flags.h +++ b/gcc/flags.h @@ -560,7 +560,7 @@ extern int flag_instrument_function_entry_exit; /* Perform a peephole pass before sched2. */ extern int flag_peephole2; -/* Try to guess branch probablities. */ +/* Try to guess branch probabilities. */ extern int flag_guess_branch_prob; /* -fcheck-bounds causes gcc to generate array bounds checks. @@ -676,7 +676,7 @@ extern int flag_signaling_nans; (MODE_HAS_INFINITIES (MODE) && !flag_finite_math_only) /* Like HONOR_NANS, but true if the given mode distinguishes between - postive and negative zero, and the sign of zero is important. */ + positive and negative zero, and the sign of zero is important. */ #define HONOR_SIGNED_ZEROS(MODE) \ (MODE_HAS_SIGNED_ZEROS (MODE) && !flag_unsafe_math_optimizations) |