Commit e2561558 by Richard Sandiford Committed by Richard Sandiford

simplify-rtx.c (simplify_rtx): Use simplify_subreg rather than simplify_gen_subreg.

gcc/
	* simplify-rtx.c (simplify_rtx): Use simplify_subreg rather than
	simplify_gen_subreg.

From-SVN: r119380
parent d71176b6
2006-11-30 Richard Sandiford <richard@codesourcery.com>
* simplify-rtx.c (simplify_rtx): Use simplify_subreg rather than
simplify_gen_subreg.
2006-11-30 Andrew Macleod <amacleod@redhat.com>
* tree-ssa-live.c (create_coalesce_list): Create a hash table.
......
......@@ -4853,9 +4853,9 @@ simplify_rtx (rtx x)
case RTX_EXTRA:
if (code == SUBREG)
return simplify_gen_subreg (mode, SUBREG_REG (x),
GET_MODE (SUBREG_REG (x)),
SUBREG_BYTE (x));
return simplify_subreg (mode, SUBREG_REG (x),
GET_MODE (SUBREG_REG (x)),
SUBREG_BYTE (x));
break;
case RTX_OBJ:
......
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