diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-17 21:23:12 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-17 21:23:12 +0000 |
commit | 1be87b7252bb4b5936fc2ebebdcb9f18bed35bae (patch) | |
tree | d04df8e015f11f7c3f1a689524aaa53d9d41c76a /gcc/simplify-rtx.c | |
parent | 6eb959329f3e10ce3d614e2701a701d89f95cb35 (diff) | |
download | gcc-1be87b7252bb4b5936fc2ebebdcb9f18bed35bae.tar.gz |
* sbitmap.c: Fix comment formatting.
* sched-deps.c: Likewise.
* sibcall.c: Likewise.
* simplify-rtx.c: Likewise.
* ssa.c: Likewise.
* ssa-ccp.c: Likewise.
* stor-layout.c: Likewise.
* timevar.c: Likewise.
* toplev.c: Likewise.
* unwind-dw2.c: Likewise.
* unwind-dw2-fde.c: Likewise.
* varasm.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44983 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/simplify-rtx.c')
-rw-r--r-- | gcc/simplify-rtx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index a29e4850f89..74e50c8f4cd 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -2415,7 +2415,7 @@ simplify_subreg (outermode, op, innermode, byte) /* The SUBREG_BYTE represents offset, as if the value were stored in memory. Irritating exception is paradoxical subreg, where we define SUBREG_BYTE to be 0. On big endian machines, this - value should be negative. For a moment, undo this exception. */ + value should be negative. For a moment, undo this exception. */ if (byte == 0 && GET_MODE_SIZE (innermode) < GET_MODE_SIZE (outermode)) { int difference = (GET_MODE_SIZE (innermode) - GET_MODE_SIZE (outermode)); @@ -2538,7 +2538,7 @@ simplify_subreg (outermode, op, innermode, byte) res = simplify_subreg (outermode, part, GET_MODE (part), final_offset); if (res) return res; - /* We can at least simplify it by referring directly to the relevent part. */ + /* We can at least simplify it by referring directly to the relevent part. */ return gen_rtx_SUBREG (outermode, part, final_offset); } |