This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/19144] SPARC back-end bug
- From: "bugzilla-gcc at thewrittenword dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 24 Dec 2004 02:03:11 -0000
- Subject: [Bug target/19144] SPARC back-end bug
- References: <20041224015246.19144.bugzilla-gcc@thewrittenword.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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