]> gcc.gnu.org Git - gcc.git/commitdiff
combine.c (combine_instructions): Add missing argument to try_combine.
authorRichard Henderson <rth@cygnus.com>
Tue, 25 Apr 2000 10:54:40 +0000 (03:54 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Tue, 25 Apr 2000 10:54:40 +0000 (03:54 -0700)
        * combine.c (combine_instructions): Add missing argument
        to try_combine.

From-SVN: r33408

gcc/ChangeLog
gcc/combine.c

index 8ee7fd29f7a8620622dc490531551d3e27bdb368..ac5d46dcc3312ecaf22adadc0ed7732617662ce2 100644 (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
index 366ada79ce3212cf5e468e5ea41843152c670b4a..46da6a7ebc4dc5f950de419336725828c7abf0b2 100644 (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;
            }
 
This page took 2.20332 seconds and 5 git commands to generate.