public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/10901] non-local goto's don't work on powerpc-darwin
       [not found] <bug-10901-6064@http.gcc.gnu.org/bugzilla/>
@ 2006-10-05  0:58 ` mrs at apple dot com
  2008-02-21 18:47 ` fxcoudert at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: mrs at apple dot com @ 2006-10-05  0:58 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from mrs at apple dot com  2006-10-05 00:57 -------
Our positron branch has the fix for this in it.  We should dig it out and
submit it.


-- 


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


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

* [Bug target/10901] non-local goto's don't work on powerpc-darwin
       [not found] <bug-10901-6064@http.gcc.gnu.org/bugzilla/>
  2006-10-05  0:58 ` [Bug target/10901] non-local goto's don't work on powerpc-darwin mrs at apple dot com
@ 2008-02-21 18:47 ` fxcoudert at gcc dot gnu dot org
  2008-02-21 19:49 ` mrs at apple dot com
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2008-02-21 18:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #17 from fxcoudert at gcc dot gnu dot org  2008-02-21 18:47 -------
(In reply to comment #16)
> Our positron branch has the fix for this in it.  We should dig it out and
> submit it.

Mike, any news on that? You can still make it in time for the 5th anniversary
of this PR! :)


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fxcoudert at gcc dot gnu dot
                   |                            |org


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


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

* [Bug target/10901] non-local goto's don't work on powerpc-darwin
       [not found] <bug-10901-6064@http.gcc.gnu.org/bugzilla/>
  2006-10-05  0:58 ` [Bug target/10901] non-local goto's don't work on powerpc-darwin mrs at apple dot com
  2008-02-21 18:47 ` fxcoudert at gcc dot gnu dot org
@ 2008-02-21 19:49 ` mrs at apple dot com
  2009-06-03 21:47 ` [Bug target/10901] non-local goto's don't work on darwin fxcoudert at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: mrs at apple dot com @ 2008-02-21 19:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #18 from mrs at apple dot com  2008-02-21 19:48 -------
Nope.


-- 


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


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

* [Bug target/10901] non-local goto's don't work on darwin
       [not found] <bug-10901-6064@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2008-02-21 19:49 ` mrs at apple dot com
@ 2009-06-03 21:47 ` fxcoudert at gcc dot gnu dot org
  2009-06-03 21:51 ` fxcoudert at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2009-06-03 21:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #19 from fxcoudert at gcc dot gnu dot org  2009-06-03 21:47 -------
Still fails on both ppc-darwin and i386-darwin, for 4.3.2, 4.4.0 and current
trunk:

$ cat a.c
extern int puts (const char *);
extern void abort (void);

int main ()
{
  __label__ l1;

  void foo ()
  {
    void bar ()
    {
      puts ("goto l1");
      goto l1;
    }

    bar ();
  }

  foo ();
  abort ();
l1:
  puts ("label l1");
  return 0;
}

$ gcc -O3 a.c && ./a.out 
goto l1
label l1

$ gcc -O0 a.c && ./a.out
goto l1


(It also fails with Apple's gcc.)


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 GCC target triplet|powerpc-darwin              |darwin
      Known to fail|                            |4.2.0 4.3.2 4.4.0 4.5.0
   Last reconfirmed|2005-12-10 05:32:24         |2009-06-03 21:47:19
               date|                            |
            Summary|non-local goto's don't work |non-local goto's don't work
                   |on powerpc-darwin           |on darwin


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


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

* [Bug target/10901] non-local goto's don't work on darwin
       [not found] <bug-10901-6064@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2009-06-03 21:47 ` [Bug target/10901] non-local goto's don't work on darwin fxcoudert at gcc dot gnu dot org
@ 2009-06-03 21:51 ` fxcoudert at gcc dot gnu dot org
  2009-06-04  8:02 ` gcc at microbizz dot nl
  2010-05-01 22:41 ` howarth at nitro dot med dot uc dot edu
  6 siblings, 0 replies; 8+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2009-06-03 21:51 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #20 from fxcoudert at gcc dot gnu dot org  2009-06-03 21:50 -------
*** Bug 22119 has been marked as a duplicate of this bug. ***


-- 


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


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

* [Bug target/10901] non-local goto's don't work on darwin
       [not found] <bug-10901-6064@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2009-06-03 21:51 ` fxcoudert at gcc dot gnu dot org
@ 2009-06-04  8:02 ` gcc at microbizz dot nl
  2010-05-01 22:41 ` howarth at nitro dot med dot uc dot edu
  6 siblings, 0 replies; 8+ messages in thread
From: gcc at microbizz dot nl @ 2009-06-04  8:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #21 from gcc at microbizz dot nl  2009-06-04 08:01 -------
No problem that it still fails. It will be fixed after the next big-bang, in
thirty billion years.


-- 


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


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

* [Bug target/10901] non-local goto's don't work on darwin
       [not found] <bug-10901-6064@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2009-06-04  8:02 ` gcc at microbizz dot nl
@ 2010-05-01 22:41 ` howarth at nitro dot med dot uc dot edu
  6 siblings, 0 replies; 8+ messages in thread
From: howarth at nitro dot med dot uc dot edu @ 2010-05-01 22:41 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #22 from howarth at nitro dot med dot uc dot edu  2010-05-01 22:41 -------
This issue also appears to exist in llvm-gcc-4.2-2.7...

llvm-gcc -O3 -fnested-functions pr10901.c
pr10901.c: In function 'main':
pr10901.c:5: sorry, unimplemented: non-local gotos not supported by LLVM


-- 


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


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

* [Bug target/10901] non-local goto's don't work on powerpc-darwin
       [not found] <20030521102600.10901.gcc@microbizz.nl>
@ 2005-06-17  3:54 ` pinskia at gcc dot gnu dot org
  0 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-17  3:54 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-06-17 03:53 -------
I should note this also effects i686-darwin also but that should be filed in a different bug.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   GCC host triplet|powerpc-apple-darwin        |
 GCC target triplet|powerpc-apple-darwin6.6     |powerpc-darwin
            Summary|[ppc-darwin] non-local      |non-local goto's don't work
                   |goto's (still) don't work   |on powerpc-darwin


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


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

end of thread, other threads:[~2010-05-01 22:41 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-10901-6064@http.gcc.gnu.org/bugzilla/>
2006-10-05  0:58 ` [Bug target/10901] non-local goto's don't work on powerpc-darwin mrs at apple dot com
2008-02-21 18:47 ` fxcoudert at gcc dot gnu dot org
2008-02-21 19:49 ` mrs at apple dot com
2009-06-03 21:47 ` [Bug target/10901] non-local goto's don't work on darwin fxcoudert at gcc dot gnu dot org
2009-06-03 21:51 ` fxcoudert at gcc dot gnu dot org
2009-06-04  8:02 ` gcc at microbizz dot nl
2010-05-01 22:41 ` howarth at nitro dot med dot uc dot edu
     [not found] <20030521102600.10901.gcc@microbizz.nl>
2005-06-17  3:54 ` [Bug target/10901] non-local goto's don't work on powerpc-darwin 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).