From fe3439b066a146a75b52b3589279e6926dc3ce1e Mon Sep 17 00:00:00 2001 From: Aldy Hernandez Date: Sun, 23 Jul 2000 17:12:04 +0000 Subject: [PATCH] unuglyfying code From-SVN: r35205 --- gcc/explow.c | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.30.2