diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-08-01 17:57:27 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-08-01 17:57:27 +0000 |
commit | ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f (patch) | |
tree | 86574f9925b42a9611cf138f95cf23040f8ab07f /gcc/combine.c | |
parent | 60a78ccfac331b0d4ff71fcdddcfc302817eb110 (diff) | |
download | gcc-ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f.zip gcc-ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f.tar.gz gcc-ec5c56db8bd075907a7b60d2cfbf225eeb4ecc1f.tar.bz2 |
alias.c: Fix comment formatting.
* alias.c: Fix comment formatting.
* bitmap.c: Likewise.
* builtins.c: Likewise.
* calls.c: Likewise.
* c-common.c: Likewise.
* c-decl.c: Likewise.
* c-dump.c: Likewise.
* c-lex.c: Likewise.
* collect2.c: Likewise.
* combine.c: Likewise.
* conflict.c: Likewise.
* cppfiles.c: Likewise.
* cppinit.c: Likewise.
* cpplex.c: Likewise.
* cpplib.c: Likewise.
* cppmacro.c: Likewise.
* cppspec.c: Likewise.
* c-pragma.c: Likewise.
* crtstuff.c: Likewise.
* cse.c: Likewise.
* cselib.c: Likewise.
* c-semantics.c: Likewise.
* c-typeck.c: Likewise.
From-SVN: r44547
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index e9fdffc..f916654 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -84,7 +84,7 @@ Boston, MA 02111-1307, USA. */ #include "basic-block.h" #include "insn-config.h" #include "function.h" -/* Include expr.h after insn-config.h so we get HAVE_conditional_move. */ +/* Include expr.h after insn-config.h so we get HAVE_conditional_move. */ #include "expr.h" #include "insn-attr.h" #include "recog.h" @@ -2469,7 +2469,7 @@ try_combine (i3, i2, i1, new_direct_jump_p) } #ifdef HAVE_cc0 /* If I2 is the setter CC0 and I3 is the user CC0 then check whether - they are adjacent to each other or not. */ + they are adjacent to each other or not. */ { rtx p = prev_nonnote_insn (i3); if (p && p != i2 && GET_CODE (p) == INSN && newi2pat @@ -3056,7 +3056,7 @@ find_split_point (loc, insn) case NE: /* if STORE_FLAG_VALUE is -1, this is (NE X 0) and only one bit of X - is known to be on, this can be converted into a NEG of a shift. */ + is known to be on, this can be converted into a NEG of a shift. */ if (STORE_FLAG_VALUE == -1 && XEXP (SET_SRC (x), 1) == const0_rtx && GET_MODE (SET_SRC (x)) == GET_MODE (XEXP (SET_SRC (x), 0)) && 1 <= (pos = exact_log2 |