From: Jan Hubicka Date: Fri, 8 Jun 2001 12:02:24 +0000 (+0000) Subject: simplify-rtx.c (simplify_subreg): Fix verification of combined subreg. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2fe7bb353a00133df8adf8bb525f37b6c3f1d4af;p=gcc.git simplify-rtx.c (simplify_subreg): Fix verification of combined subreg. * simplify-rtx.c (simplify_subreg): Fix verification of combined subreg. From-SVN: r43008 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 303680dab62..535c9651300 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Jun 7 18:27:53 CEST 2001 Jan Hubicka + + * simplify-rtx.c (simplify_subreg): Fix verification of + combined subreg. + 2001-06-08 Rainer Orth * config/mips/mips.h (CPP_SPEC): Simplify .s/.S handling. @@ -102,6 +107,7 @@ Thu Jun 7 16:17:40 2001 Richard Kenner documentation should be added to invoke.texi. Avoid an overfull hbox. +>>>>>>> 1.10276 Thu Jun 7 17:09:50 CEST 2001 Jan Hubicka * toplev.c (rest_of_compilation): Revert previous patch. diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index 97d6f6bc709..39c30154d39 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -2327,7 +2327,7 @@ simplify_subreg (outermode, op, innermode, byte) } /* See whether resulting subreg will be paradoxical. */ - if (GET_MODE_SIZE (innermostmode) < GET_MODE_SIZE (outermode)) + if (GET_MODE_SIZE (innermostmode) > GET_MODE_SIZE (outermode)) { /* In nonparadoxical subregs we can't handle negative offsets. */ if (final_offset < 0)