diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-17 03:28:11 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-17 03:28:11 +0000 |
commit | b903337a734cf8844314fceaf0a5b47fb402d942 (patch) | |
tree | 6c402772c72ac7d22890da53e8d0a4884be43356 /gcc/ifcvt.c | |
parent | 8c49102463099435ac15dcc5a0e39f7ee5e940b1 (diff) | |
download | ppe42-gcc-b903337a734cf8844314fceaf0a5b47fb402d942.tar.gz ppe42-gcc-b903337a734cf8844314fceaf0a5b47fb402d942.zip |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61421 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ifcvt.c')
-rw-r--r-- | gcc/ifcvt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ifcvt.c b/gcc/ifcvt.c index 21a7e648319..72dc2e12f65 100644 --- a/gcc/ifcvt.c +++ b/gcc/ifcvt.c @@ -2282,7 +2282,7 @@ find_if_block (ce_info) int max_insns = MAX_CONDITIONAL_EXECUTE; int n_insns; - /* Determine if the preceeding block is an && or || block. */ + /* Determine if the preceding block is an && or || block. */ if ((n_insns = block_jumps_and_fallthru_p (bb, else_bb)) >= 0) { ce_info->and_and_p = TRUE; @@ -2877,7 +2877,7 @@ dead_or_predicable (test_bb, merge_bb, other_bb, new_dest, reversep) if (HAVE_conditional_execution) { /* In the conditional execution case, we have things easy. We know - the condition is reversable. We don't have to check life info, + the condition is reversible. We don't have to check life info, becase we're going to conditionally execute the code anyway. All that's left is making sure the insns involved can actually be predicated. */ |