diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-12-24 08:30:34 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-12-24 08:30:34 +0000 |
commit | 14b493d64dd504f79cd702bba4b8bae678740af9 (patch) | |
tree | f527a7be9da17e50c26bf10cb61c24606588c777 /gcc/simplify-rtx.c | |
parent | 02aef83470d501c4fd44035ebc41f6b9449e3288 (diff) | |
download | gcc-14b493d64dd504f79cd702bba4b8bae678740af9.zip gcc-14b493d64dd504f79cd702bba4b8bae678740af9.tar.gz gcc-14b493d64dd504f79cd702bba4b8bae678740af9.tar.bz2 |
regmove.c: Fix comment typos.
* regmove.c: Fix comment typos.
* reload.c: Likewise.
* reload1.c: Likewise.
* resource.c: Likewise.
* rtl.def: Likewise.
* rtl.h: Likewise.
* rtlanal.c: Likewise.
* sched-deps.c: Likewise.
* sched-rgn.c: Likewise.
* sibcall.c: Likewise.
* simplify-rtx.c: Likewise.
* ssa-ccp.c: Likewise.
* ssa.c: Likewise.
* stmt.c: Likewise.
* stor-layout.c: Likewise.
* system.h: Likewise.
* tlink.c: Likewise.
* toplev.c: Likewise.
* tracer.c: Likewise.
* tree-inline.c: Likewise.
* tree.c: Likewise.
* tree.h: Likewise.
* unroll.c: Likewise.
* varasm.c: Likewise.
From-SVN: r60473
Diffstat (limited to 'gcc/simplify-rtx.c')
-rw-r--r-- | gcc/simplify-rtx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index 04c7b9f..1949f24 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -2434,7 +2434,7 @@ simplify_subreg (outermode, op, innermode, byte) if (GET_CODE (op) == CONST_INT) val = INTVAL (op); - /* We don't handle synthetizing of non-integral constants yet. */ + /* We don't handle synthesizing of non-integral constants yet. */ if (GET_MODE_CLASS (outermode) != MODE_INT) return NULL_RTX; @@ -2571,7 +2571,7 @@ simplify_subreg (outermode, op, innermode, byte) rtx x = gen_rtx_REG (outermode, final_regno); /* Propagate original regno. We don't have any way to specify - the offset inside orignal regno, so do so only for lowpart. + the offset inside original regno, so do so only for lowpart. The information is used only by alias analysis that can not grog partial register anyway. */ @@ -2656,7 +2656,7 @@ simplify_gen_subreg (outermode, op, innermode, byte) This is the preferred entry point into the simplification routines; however, we still allow passes to call the more specific routines. - Right now GCC has three (yes, three) major bodies of RTL simplficiation + Right now GCC has three (yes, three) major bodies of RTL simplification code that need to be unified. 1. fold_rtx in cse.c. This code uses various CSE specific |