Commit 3d2f8eb6 by Bernd Schmidt Committed by Bernd Schmidt

regmove.c (regmove_profitable_p): Use return value of find_matches properly.

	* regmove.c (regmove_profitable_p): Use return value of find_matches
	properly.

From-SVN: r23750
parent 57412d4f
Sun Nov 22 13:40:02 1998 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* regmove.c (regmove_profitable_p): Use return value of find_matches
properly.
Sun Nov 22 02:47:37 PST 1998 Jeff Law (law@cygnus.com) Sun Nov 22 02:47:37 PST 1998 Jeff Law (law@cygnus.com)
* version.c: Bump for snapshot. * version.c: Bump for snapshot.
......
...@@ -2028,7 +2028,7 @@ regmove_profitable_p () ...@@ -2028,7 +2028,7 @@ regmove_profitable_p ()
we find a machine where this occurs and regmove should we find a machine where this occurs and regmove should
be enabled. */ be enabled. */
break; break;
if (find_matches (pat, &match) >= 0) if (find_matches (pat, &match))
return 1; return 1;
break; break;
} }
......
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