diff options
author | Aldy Hernandez <aldyh@gcc.gnu.org> | 2000-07-23 17:12:04 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2000-07-23 17:12:04 +0000 |
commit | fe3439b066a146a75b52b3589279e6926dc3ce1e (patch) | |
tree | 17209b3e931d53d81cd03c7dae5d80992963fe27 /gcc/explow.c | |
parent | b510e0bd8207f002812d51e1e91940403d789cf1 (diff) | |
download | gcc-fe3439b066a146a75b52b3589279e6926dc3ce1e.zip gcc-fe3439b066a146a75b52b3589279e6926dc3ce1e.tar.gz gcc-fe3439b066a146a75b52b3589279e6926dc3ce1e.tar.bz2 |
unuglyfying code
From-SVN: r35205
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index ff4f4c4..ce7118e 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; |