From bf6a742f4f717434ee922b64a5de6e0e4f50ec4e Mon Sep 17 00:00:00 2001 From: aldyh Date: Sun, 23 Jul 2000 17:12:04 +0000 Subject: unuglyfying code git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35205 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/explow.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gcc/explow.c') diff --git a/gcc/explow.c b/gcc/explow.c index ff4f4c4229b..ce7118eeb17 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -842,8 +842,10 @@ force_not_mem (x) rtx x; { register rtx temp; + if (GET_CODE (x) != MEM || GET_MODE (x) == BLKmode) return x; + temp = gen_reg_rtx (GET_MODE (x)); emit_move_insn (temp, x); return temp; -- cgit v1.2.1