+Mon Aug 2 09:38:10 1999 Nick Clifton <nickc@cygnus.com>
+
+ * explow.c (force_reg): Call force_operand if X does not
+ satisfy general_operand.
+
Mon Aug 2 01:34:22 1999 Jeffrey A Law (law@cygnus.com)
* fix-header.c (main): When testing for CONTINUED, use string
if (GET_CODE (x) == REG)
return x;
+
temp = gen_reg_rtx (mode);
+
+ if (! general_operand (x, mode))
+ x = force_operand (x, NULL_RTX);
+
insn = emit_move_insn (temp, x);
/* Let optimizers know that TEMP's value never changes