]> gcc.gnu.org Git - gcc.git/commitdiff
* integrate.c (copy_rtx_and_substitute): Copy mode too.
authorJan Hubicka <jh@suse.cz>
Fri, 15 Dec 2000 13:46:51 +0000 (14:46 +0100)
committerJan Hubicka <hubicka@gcc.gnu.org>
Fri, 15 Dec 2000 13:46:51 +0000 (13:46 +0000)
From-SVN: r38283

gcc/ChangeLog
gcc/integrate.c

index e4f3c49cc67d258f6791ea9e06194e4cd770db28..b342fd7bbb236725a0b70d92aee6c7386952ad60 100644 (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.
index b991fef0a6c9d1c9d7a68e7f629455295aca6d28..0db4840503a8c02f4586ff5022746093de520c66 100644 (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);
This page took 0.077181 seconds and 5 git commands to generate.