home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: gnu.gcc.bug
- Path: sparky!uunet!cis.ohio-state.edu!elelab.nsc.co.JP!tatsumi
- From: tatsumi@elelab.nsc.co.JP (Tetsu Tatsumi)
- Subject: g++ Internal compile error
- Message-ID: <tatsumi.flora100251@elelab.nsc.co.jp>
- Sender: gnulists@ai.mit.edu
- Organization: Computer Systems Lab., Electronics Research Labs., Nippon Steel
- Distribution: gnu
- Date: Mon, 7 Sep 1992 08:47:56 GMT
- Approved: bug-gcc@prep.ai.mit.edu
- Lines: 29
-
- g++ 2.2.2 on SunOS 4.1.2 sais
-
- /usrx/bin/gcc: Internal compiler error: program cc1plus got fatal signal 6
-
- for the file following (g++ -c file.c).
- --------------------------------------------------------------------------
- class A {
- int i; // not necessary
- public:
- static A a1;
- A();
- };
-
- class B {
- A a2;
- public:
- B();
- };
-
- B::B()
- {
- a2 = A::a1;
- }
- --------------------------------------------------------------------------
-
- /*------------------------------*--------------------------------/
- / tatsumi@elelab.nsc.co.jp / Nippon Steel Corporation /
- /-------------------------------*-------------------------------*/
-
-