From 865f50c5a9748efd95c8f093ed4ad0c7c88ce4c5 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Tue, 25 Apr 2000 03:54:40 -0700 Subject: [PATCH] combine.c (combine_instructions): Add missing argument to try_combine. * combine.c (combine_instructions): Add missing argument to try_combine. From-SVN: r33408 --- gcc/ChangeLog | 5 +++++ gcc/combine.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8ee7fd29f7a..ac5d46dcc33 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-04-25 Richard Henderson + + * combine.c (combine_instructions): Add missing argument + to try_combine. + 2000-04-25 Richard Henderson * toplev.c (rest_of_compilation): Delay sibcall optimization diff --git a/gcc/combine.c b/gcc/combine.c index 366ada79ce3..46da6a7ebc4 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; } -- 2.30.2