diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1995-04-17 12:19:48 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1995-04-17 12:19:48 -0700 |
commit | 85c53d245a40355fe76f6e4ff7d4eca034fe8bba (patch) | |
tree | df5e38ede348d2f2c1240321ca71f00b4195c613 /gcc | |
parent | 545bcf37d1198cd9d01457a7d8940928cde961f2 (diff) | |
download | gcc-85c53d245a40355fe76f6e4ff7d4eca034fe8bba.zip gcc-85c53d245a40355fe76f6e4ff7d4eca034fe8bba.tar.gz gcc-85c53d245a40355fe76f6e4ff7d4eca034fe8bba.tar.bz2 |
(expand_builtin, case BUILT_IN_MEMCPY): Call force_operand
on dest_rtx before returning it.
From-SVN: r9393
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7754,7 +7754,7 @@ expand_builtin (exp, target, subtarget, mode, ignore) emit_block_move (dest_mem, src_mem, expand_expr (len, NULL_RTX, VOIDmode, 0), MIN (src_align, dest_align)); - return dest_rtx; + return force_operand (dest_rtx, NULL_RTX); } /* These comparison functions need an instruction that returns an actual |