diff options
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r-- | gcc/emit-rtl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index f5ec8b4..6cfaef6 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -2555,7 +2555,8 @@ unshare_all_rtl_1 (rtx_insn *insn) This special care is necessary when the stack slot MEM does not actually appear in the insn chain. If it does appear, its address is unshared from all else at that point. */ - stack_slot_list = copy_rtx_if_shared (stack_slot_list); + stack_slot_list = safe_as_a <rtx_expr_list *> ( + copy_rtx_if_shared (stack_slot_list)); } /* Go through all the RTL insn bodies and copy any invalid shared |