public inbox for java-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug libgcj/1373] recursion stress test causes segmentation fault
       [not found] <bug-1373-3604@http.gcc.gnu.org/bugzilla/>
@ 2005-10-13  9:08 ` aph at gcc dot gnu dot org
  2005-10-13  9:10 ` aph at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: aph at gcc dot gnu dot org @ 2005-10-13  9:08 UTC (permalink / raw)
  To: java-prs



------- Comment #8 from aph at gcc dot gnu dot org  2005-10-13 09:07 -------
See http://gcc.gnu.org/ml/java-patches/2004-q4/msg00230.html.


-- 


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libgcj/1373] recursion stress test causes segmentation fault
       [not found] <bug-1373-3604@http.gcc.gnu.org/bugzilla/>
  2005-10-13  9:08 ` [Bug libgcj/1373] recursion stress test causes segmentation fault aph at gcc dot gnu dot org
@ 2005-10-13  9:10 ` aph at gcc dot gnu dot org
  2005-10-13  9:11 ` aph at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: aph at gcc dot gnu dot org @ 2005-10-13  9:10 UTC (permalink / raw)
  To: java-prs



------- Comment #9 from aph at gcc dot gnu dot org  2005-10-13 09:10 -------
See also http://gcc.gnu.org/ml/java-patches/2004-q4/msg00241.html


-- 


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libgcj/1373] recursion stress test causes segmentation fault
       [not found] <bug-1373-3604@http.gcc.gnu.org/bugzilla/>
  2005-10-13  9:08 ` [Bug libgcj/1373] recursion stress test causes segmentation fault aph at gcc dot gnu dot org
  2005-10-13  9:10 ` aph at gcc dot gnu dot org
@ 2005-10-13  9:11 ` aph at gcc dot gnu dot org
  2005-11-21 21:46 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: aph at gcc dot gnu dot org @ 2005-10-13  9:11 UTC (permalink / raw)
  To: java-prs



------- Comment #10 from aph at gcc dot gnu dot org  2005-10-13 09:11 -------
And http://gcc.gnu.org/ml/java-patches/2004-q4/msg00270.html.

Hans' threading seems to be broken.


-- 


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libgcj/1373] recursion stress test causes segmentation fault
       [not found] <bug-1373-3604@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2005-10-13  9:11 ` aph at gcc dot gnu dot org
@ 2005-11-21 21:46 ` pinskia at gcc dot gnu dot org
  2006-04-23 16:16 ` pinskia at gcc dot gnu dot org
  2006-04-23 16:18 ` pinskia at gcc dot gnu dot org
  5 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-11-21 21:46 UTC (permalink / raw)
  To: java-prs



------- Comment #11 from pinskia at gcc dot gnu dot org  2005-11-21 21:46 -------
*** Bug 24980 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vadimn at redhat dot com


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libgcj/1373] recursion stress test causes segmentation fault
       [not found] <bug-1373-3604@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2005-11-21 21:46 ` pinskia at gcc dot gnu dot org
@ 2006-04-23 16:16 ` pinskia at gcc dot gnu dot org
  2006-04-23 16:18 ` pinskia at gcc dot gnu dot org
  5 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-04-23 16:16 UTC (permalink / raw)
  To: java-prs



------- Comment #12 from pinskia at gcc dot gnu dot org  2006-04-23 16:16 -------
*** Bug 27268 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |debian-gcc at lists dot
                   |                            |debian dot org


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libgcj/1373] recursion stress test causes segmentation fault
       [not found] <bug-1373-3604@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2006-04-23 16:16 ` pinskia at gcc dot gnu dot org
@ 2006-04-23 16:18 ` pinskia at gcc dot gnu dot org
  5 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-04-23 16:18 UTC (permalink / raw)
  To: java-prs



------- Comment #13 from pinskia at gcc dot gnu dot org  2006-04-23 16:18 -------
A better testcase comes from PR 27268 which seg faults at all optimizations
level currently (though this case can also be optimized out to be an infinite
loop really):
public class test
{
    public test()
    {
        test t = new test();
    }

    public static void main(String argv[])
    {
        new test();
    }
}


-- 


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


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2006-04-23 16:18 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-1373-3604@http.gcc.gnu.org/bugzilla/>
2005-10-13  9:08 ` [Bug libgcj/1373] recursion stress test causes segmentation fault aph at gcc dot gnu dot org
2005-10-13  9:10 ` aph at gcc dot gnu dot org
2005-10-13  9:11 ` aph at gcc dot gnu dot org
2005-11-21 21:46 ` pinskia at gcc dot gnu dot org
2006-04-23 16:16 ` pinskia at gcc dot gnu dot org
2006-04-23 16:18 ` pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).