Commit 80a62484 by J"orn Rennecke Committed by Joern Rennecke

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
parent ea793912
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
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment