Commit fe3439b0 by Aldy Hernandez

unuglyfying code

From-SVN: r35205
parent b510e0bd
...@@ -842,8 +842,10 @@ force_not_mem (x) ...@@ -842,8 +842,10 @@ force_not_mem (x)
rtx x; rtx x;
{ {
register rtx temp; register rtx temp;
if (GET_CODE (x) != MEM || GET_MODE (x) == BLKmode) if (GET_CODE (x) != MEM || GET_MODE (x) == BLKmode)
return x; return x;
temp = gen_reg_rtx (GET_MODE (x)); temp = gen_reg_rtx (GET_MODE (x));
emit_move_insn (temp, x); emit_move_insn (temp, x);
return temp; return temp;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment