Commit 9258b4c1 by Jakub Jelinek Committed by Jakub Jelinek

* combine.c (propagate_for_debug_subst): Call wrap_constant on top.

From-SVN: r151644
parent 137a05d3
2009-09-11 Jakub Jelinek <jakub@redhat.com> 2009-09-11 Jakub Jelinek <jakub@redhat.com>
* combine.c (propagate_for_debug_subst): Call wrap_constant on top.
* print-rtl.c (print_rtx): Use JUMP_LABEL (in_rtx) instead of * print-rtl.c (print_rtx): Use JUMP_LABEL (in_rtx) instead of
XEXP (in_rtx, 8). XEXP (in_rtx, 8).
......
...@@ -2314,7 +2314,7 @@ propagate_for_debug_subst (rtx *loc, void *data) ...@@ -2314,7 +2314,7 @@ propagate_for_debug_subst (rtx *loc, void *data)
to = simplify_gen_subreg (GET_MODE (x), to, to = simplify_gen_subreg (GET_MODE (x), to,
GET_MODE (from), SUBREG_BYTE (x)); GET_MODE (from), SUBREG_BYTE (x));
} }
*loc = to; *loc = wrap_constant (GET_MODE (x), to);
pair->changed = true; pair->changed = true;
return -1; return -1;
} }
......
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