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/alias.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/alias.c')
-rw-r--r-- | gcc/alias.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/alias.c b/gcc/alias.c index bbde59b..1a28eb6 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -352,7 +352,7 @@ objects_must_conflict_p (t1, t2) != (t2 != 0 && AGGREGATE_TYPE_P (t2))) return 0; - /* Otherwise they conflict only if the alias sets conflict. */ + /* Otherwise they conflict only if the alias sets conflict. */ return alias_sets_conflict_p (t1 ? get_alias_set (t1) : 0, t2 ? get_alias_set (t2) : 0); } @@ -758,7 +758,7 @@ find_base_value (src) if (GET_CODE (src) != PLUS && GET_CODE (src) != MINUS) break; - /* ... fall through ... */ + /* ... fall through ... */ case PLUS: case MINUS: @@ -807,7 +807,7 @@ find_base_value (src) case AND: /* If the second operand is constant set the base - address to the first operand. */ + address to the first operand. */ if (GET_CODE (XEXP (src, 1)) == CONST_INT && INTVAL (XEXP (src, 1)) != 0) return find_base_value (XEXP (src, 0)); return 0; @@ -1344,7 +1344,7 @@ base_alias_check (x, y, x_mode, y_mode) if (flag_argument_noalias > 1) return 0; - /* Weak noalias assertion (arguments are distinct, but may match globals). */ + /* Weak noalias assertion (arguments are distinct, but may match globals). */ return ! (GET_MODE (x_base) == VOIDmode && GET_MODE (y_base) == VOIDmode); } @@ -2103,7 +2103,7 @@ init_alias_once () for (i = 0; i < FIRST_PSEUDO_REGISTER; i++) /* Check whether this register can hold an incoming pointer argument. FUNCTION_ARG_REGNO_P tests outgoing register - numbers, so translate if necessary due to register windows. */ + numbers, so translate if necessary due to register windows. */ if (FUNCTION_ARG_REGNO_P (OUTGOING_REGNO (i)) && HARD_REGNO_MODE_OK (i, Pmode)) SET_HARD_REG_BIT (argument_registers, i); @@ -2231,7 +2231,7 @@ init_alias_analysis () /* If this insn has a noalias note, process it, Otherwise, scan for sets. A simple set will have no side effects - which could change the base value of any other register. */ + which could change the base value of any other register. */ if (GET_CODE (PATTERN (insn)) == SET && REG_NOTES (insn) != 0 |