combine.c (combine_instructions): Add missing argument to try_combine.

* combine.c (combine_instructions): Add missing argument
        to try_combine.

From-SVN: r33408
This commit is contained in:
Richard Henderson 2000-04-25 03:54:40 -07:00 committed by Richard Henderson
parent 9d9e5c09bd
commit 865f50c5a9
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-04-25 Richard Henderson <rth@cygnus.com>
* combine.c (combine_instructions): Add missing argument
to try_combine.
2000-04-25 Richard Henderson <rth@cygnus.com>
* toplev.c (rest_of_compilation): Delay sibcall optimization

View File

@ -658,7 +658,8 @@ combine_instructions (f, nregs)
nextlinks;
nextlinks = XEXP (nextlinks, 1))
if ((next = try_combine (insn, XEXP (links, 0),
XEXP (nextlinks, 0))) != 0)
XEXP (nextlinks, 0),
&new_direct_jump_p)) != 0)
goto retry;
}