aboutsummaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>2000-04-25 03:54:40 -0700
committerRichard Henderson <rth@gcc.gnu.org>2000-04-25 03:54:40 -0700
commit865f50c5a9748efd95c8f093ed4ad0c7c88ce4c5 (patch)
treeb914ebd5e2deb257334d7bc37a3d36560f171aa9 /gcc/combine.c
parent9d9e5c09bd9fceccbeda15db6b31b2af699d494f (diff)
downloadgcc-865f50c5a9748efd95c8f093ed4ad0c7c88ce4c5.zip
gcc-865f50c5a9748efd95c8f093ed4ad0c7c88ce4c5.tar.gz
gcc-865f50c5a9748efd95c8f093ed4ad0c7c88ce4c5.tar.bz2
combine.c (combine_instructions): Add missing argument to try_combine.
* combine.c (combine_instructions): Add missing argument to try_combine. From-SVN: r33408
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c3
1 files changed, 2 insertions, 1 deletions
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;
}