From 2fe7bb353a00133df8adf8bb525f37b6c3f1d4af Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Fri, 8 Jun 2001 12:02:24 +0000 Subject: simplify-rtx.c (simplify_subreg): Fix verification of combined subreg. * simplify-rtx.c (simplify_subreg): Fix verification of combined subreg. From-SVN: r43008 --- gcc/simplify-rtx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/simplify-rtx.c') diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index 97d6f6b..39c3015 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) -- cgit v1.1