diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-01-17 03:28:11 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-01-17 03:28:11 +0000 |
commit | 3d042e770b6b46116c9b45eb924b67a47178dbd8 (patch) | |
tree | 6c402772c72ac7d22890da53e8d0a4884be43356 /gcc/predict.c | |
parent | fd2190ca49b7db1f14cfddd3232cd378e995eebb (diff) | |
download | gcc-3d042e770b6b46116c9b45eb924b67a47178dbd8.zip gcc-3d042e770b6b46116c9b45eb924b67a47178dbd8.tar.gz gcc-3d042e770b6b46116c9b45eb924b67a47178dbd8.tar.bz2 |
ifcvt.c: Fix comment typos.
* ifcvt.c: Fix comment typos.
* lcm.c: Likewise.
* libgcc2.c: Likewise.
* local-alloc.c: Likewise.
* loop.c: Likewise.
* predict.c: Likewise.
* ra-build.c: Likewise.
* ra.c: Likewise.
* ra-colorize.c: Likewise.
* ra.h: Likewise.
* ra-rewrite.c: Likewise.
* regmove.c: Likewise.
* reload.h: Likewise.
* rtlanal.c: Likewise.
* toplev.c: Likewise.
* tree.h: Likewise.
* unwind-dw2-fde-glibc.c: Likewise.
* vmsdbgout.c: Likewise.
From-SVN: r61421
Diffstat (limited to 'gcc/predict.c')
-rw-r--r-- | gcc/predict.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/predict.c b/gcc/predict.c index 4ca71d3..71009fa 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -570,7 +570,7 @@ estimate_probability (loops_info) if (FLOAT_MODE_P (GET_MODE (XEXP (cond, 0)))) ; /* Comparisons with 0 are often used for booleans and there is - nothing usefull to predict about them. */ + nothing useful to predict about them. */ else if (XEXP (cond, 1) == const0_rtx || XEXP (cond, 0) == const0_rtx) ; @@ -586,7 +586,7 @@ estimate_probability (loops_info) if (FLOAT_MODE_P (GET_MODE (XEXP (cond, 0)))) ; /* Comparisons with 0 are often used for booleans and there is - nothing usefull to predict about them. */ + nothing useful to predict about them. */ else if (XEXP (cond, 1) == const0_rtx || XEXP (cond, 0) == const0_rtx) ; |