From 2d76cb1aba961fe2dc84fd3b1dad04181affd103 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Fri, 17 Aug 2001 21:23:12 +0000 Subject: sbitmap.c: Fix comment formatting. * 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. From-SVN: r44983 --- gcc/simplify-rtx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/simplify-rtx.c') diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index a29e485..74e50c8 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); } -- cgit v1.1