From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 820 invoked by alias); 24 Dec 2004 02:03:16 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 32584 invoked by uid 48); 24 Dec 2004 02:03:11 -0000 Date: Fri, 24 Dec 2004 02:03:00 -0000 Message-ID: <20041224020311.32583.qmail@sourceware.org> From: "bugzilla-gcc at thewrittenword dot com" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20041224015246.19144.bugzilla-gcc@thewrittenword.com> References: <20041224015246.19144.bugzilla-gcc@thewrittenword.com> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug target/19144] SPARC back-end bug X-Bugzilla-Reason: CC X-SW-Source: 2004-12/txt/msg03429.txt.bz2 List-Id: ------- 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