simpify-rtx.c (simplify_subreg): Don't pass MODE_CC mode to int_mode_for_mode.

* simpify-rtx.c (simplify_subreg): Don't pass MODE_CC mode to
	int_mode_for_mode.

From-SVN: r55745
This commit is contained in:
J"orn Rennecke 2002-07-25 09:25:14 +00:00 committed by Joern Rennecke
parent ea79391291
commit 80a6248498
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Thu Jul 25 10:23:41 2002 J"orn Rennecke <joern.rennecke@superh.com>
* simpify-rtx.c (simplify_subreg): Don't pass MODE_CC mode to
int_mode_for_mode.
2002-07-25 Gabriel Dos Reis <gdr@nerim.net>
* c-common.c (c_sizeof_or_alignof_type): Take a third argument for

View File

@ -2406,7 +2406,8 @@ simplify_subreg (outermode, op, innermode, byte)
return new;
}
if (GET_MODE_CLASS (outermode) != MODE_INT)
if (GET_MODE_CLASS (outermode) != MODE_INT
&& GET_MODE_CLASS (outermode) != MODE_CC)
{
enum machine_mode new_mode = int_mode_for_mode (outermode);