From: Aldy Hernandez Date: Sun, 23 Jul 2000 17:12:04 +0000 (+0000) Subject: unuglyfying code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fe3439b066a146a75b52b3589279e6926dc3ce1e;p=gcc.git unuglyfying code From-SVN: r35205 --- 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;