From 24a13950ca6786c0bb338b760d5e6a0dcdaeebcf Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Wed, 13 Jul 1994 13:35:03 -0700 Subject: [PATCH] (store_field): Set MEM_IN_STRUCT_P on object and blk_object. From-SVN: r7767 --- gcc/expr.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gcc/expr.c b/gcc/expr.c index 9ecb85a24ba..e7649868eda 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -3054,6 +3054,8 @@ store_field (target, bitsize, bitpos, mode, exp, value_mode, GET_MODE_SIZE (GET_MODE (target)), 0); rtx blk_object = copy_rtx (object); + MEM_IN_STRUCT_P (object) = 1; + MEM_IN_STRUCT_P (blk_object) = 1; PUT_MODE (blk_object, BLKmode); if (bitsize != GET_MODE_BITSIZE (GET_MODE (target))) -- 2.30.2