------- Additional Comments From bugzilla-gcc at thewrittenword dot com  
2004-12-24 02:03 -------
Ok, I ran diff on both .s files (id #7816 v id #7818) and found the following:
  @@ -199,8 +199,8 @@
          cmp     %g1, 0
          bne     .LL9
          nop
  -       add     %fp, -80, %g1
  -       add     %fp, -84, %o5
* +       add     %fp, -72, %g1
  +       add     %fp, -80, %o5
          ld      [%fp-20], %o0
          mov     %g1, %o1
          mov     %o5, %o2

If you review the diff of the .s files between #7816 and #7818, the
numeric differences are the same except for the line with the '*'
above. I modified the .s file and changed -72 to -76 (diff of four
from -80 on the next line) and it worked (patch below)!

--- id7816/kurlcompletion.s        Thu Dec 23 19:20:59 2004
+++ kurlcompletion.s    Thu Dec 23 19:40:52 2004
@@ -199,7 +199,7 @@
        cmp     %g1, 0
        bne     .LL9
        nop
-       add     %fp, -72, %g1
+       add     %fp, -76, %g1
        ld      [%fp-20], %o0
        mov     %g1, %o1


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19144

Reply via email to