This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug target/42924] [4.5 Regression] pex-unix.c:589:1: internal compiler error: output_operand



------- Comment #5 from sje at cup dot hp dot com  2010-02-02 17:18 -------
Here is a cutdown version of pex-unix.i that fails to compile with -O2 -g.

extern char **environ;
pex_unix_exec_child ()
{
  int pid;
  volatile int sleep_interval;
  volatile int retries;
  char **save_environ = environ;
  sleep_interval = 1;
  for (retries = 0; retries < 4; ++retries)
    {
      pid = vfork ();
    }
  environ = save_environ;
}


-- 

sje at cup dot hp dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |sje at cup dot hp dot com
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2010-02-02 17:18:23
               date|                            |


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]