* integrate.c (copy_rtx_and_substitute): Copy mode too.

From-SVN: r38283
This commit is contained in:
Jan Hubicka 2000-12-15 14:46:51 +01:00 committed by Jan Hubicka
parent 0bf7d71a78
commit dde068d924
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Fri Dec 15 14:44:51 MET 2000 Jan Hubicka <jh@suse.cz>
* integrate.c (copy_rtx_and_substitute): Copy mode too.
Fri Dec 15 14:11:57 MET 2000 Jan Hubicka <jh@suse.cz>
* flow.c (notice_stack_pointer_modification_1): Cleanup.

View File

@ -2070,6 +2070,7 @@ copy_rtx_and_substitute (orig, map, for_lhs)
{
copy = rtx_alloc (ASM_OPERANDS);
copy->volatil = orig->volatil;
PUT_MODE (copy, GET_MODE (orig));
ASM_OPERANDS_TEMPLATE (copy) = ASM_OPERANDS_TEMPLATE (orig);
ASM_OPERANDS_OUTPUT_CONSTRAINT (copy)
= ASM_OPERANDS_OUTPUT_CONSTRAINT (orig);