diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/combine.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8ee7fd2..ac5d46d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 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 until after emit_eh_context. diff --git a/gcc/combine.c b/gcc/combine.c index 366ada7..46da6a7 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -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; } |