Commit 4c1dfa8f by Jim Wilson

(secondary_reload_class): Correct test against

FIRST_PSEUDO_REGISTER.

From-SVN: r3333
parent 31aaaec1
......@@ -2181,7 +2181,7 @@ secondary_reload_class (class, mode, in)
/* We can place any hard register, 0.0, and 1.0 into FP_REGS. */
if (class == FP_REGS
&& ((regno >= 0 && regno <= FIRST_PSEUDO_REGISTER)
&& ((regno >= 0 && regno < FIRST_PSEUDO_REGISTER)
|| in == CONST0_RTX (mode) || in == CONST1_RTX (mode)))
return NO_REGS;
......
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