public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/18865] New: ICE in cp_expr_size, at cp/cp-objcp-common.c:86
@ 2004-12-07  8:48 aj at gcc dot gnu dot org
  2004-12-07  8:49 ` [Bug c++/18865] " aj at gcc dot gnu dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: aj at gcc dot gnu dot org @ 2004-12-07  8:48 UTC (permalink / raw)
  To: gcc-bugs

The following error occurs both with a 32-bit build on i686 and one with gcc 
-m32 on x86-64. 
/opt/gcc/4.0-devel/libexec/gcc/x86_64-suse-linux-gnu/4.0.0/cc1plus -m32 
-fpreprocessed libskim_la.all_cpp.ii -quiet -dumpbase libskim_la.all_cpp.cpp 
-march=i686 -mtune=i686 -ansi -auxbase-strip libskim_la.all_cpp.lo -O2 -ansi 
-version -fmessage-length=0 -fno-exceptions -fno-check-new -fno-common -o 
libskim_la.all_cpp.s 
GNU C++ version 4.0.0 20041206 (experimental) (x86_64-suse-linux-gnu) 
        compiled by GNU C version 4.0.0 20041206 (experimental). 
GGC heuristics: --param ggc-min-expand=30 --param ggc-min-heapsize=4096 
libskim_la.all_cpp.ii: In member function 'void 
SkimGlobalActions::create_properties(QWidget*, PropertyRepository&, const 
scim::PropertyList&, __gnu_cxx::__normal_iterator<const scim::Property*, 
std::vector<scim::Property, std::allocator<scim::Property> > >, 
__gnu_cxx::__normal_iterator<const scim::Property*, std::vector<scim::Property, 
std::allocator<scim::Property> > >, int)': 
libskim_la.all_cpp.ii:72312: internal compiler error: in cp_expr_size, at 
cp/cp-objcp-common.c:86 
Please submit a full bug report, 
with preprocessed source if appropriate. 
See <URL:http://gcc.gnu.org/bugs.html> for instructions.

-- 
           Summary: ICE in cp_expr_size, at cp/cp-objcp-common.c:86
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: aj at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i686-linux-gnu
  GCC host triplet: i686-linux-gnu
GCC target triplet: i686-linux-gnu


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


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

* [Bug c++/18865] ICE in cp_expr_size, at cp/cp-objcp-common.c:86
  2004-12-07  8:48 [Bug c++/18865] New: ICE in cp_expr_size, at cp/cp-objcp-common.c:86 aj at gcc dot gnu dot org
@ 2004-12-07  8:49 ` aj at gcc dot gnu dot org
  2004-12-07 10:20 ` [Bug c++/18865] [4.0 Regression] " belyshev at lubercy dot com
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: aj at gcc dot gnu dot org @ 2004-12-07  8:49 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From aj at gcc dot gnu dot org  2004-12-07 08:49 -------
Created an attachment (id=7696)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7696&action=view)
Preprocessed and compressed file for Linux/x86


-- 


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


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

* [Bug c++/18865] [4.0 Regression] ICE in cp_expr_size, at cp/cp-objcp-common.c:86
  2004-12-07  8:48 [Bug c++/18865] New: ICE in cp_expr_size, at cp/cp-objcp-common.c:86 aj at gcc dot gnu dot org
  2004-12-07  8:49 ` [Bug c++/18865] " aj at gcc dot gnu dot org
@ 2004-12-07 10:20 ` belyshev at lubercy dot com
  2004-12-07 12:24 ` lerdsuwa at gcc dot gnu dot org
  2004-12-07 15:13 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: belyshev at lubercy dot com @ 2004-12-07 10:20 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From belyshev at lubercy dot com  2004-12-07 10:20 -------
// reduced testcase

struct T
{
  T ();
  T (const T&);
  T &operator= (const T&);
};

struct S {
  void *p;
  T t;
  void *q;
};

void foo ()
{
  S s = {0, T (), 0};
}


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
  GCC build triplet|i686-linux-gnu              |
   GCC host triplet|i686-linux-gnu              |
 GCC target triplet|i686-linux-gnu              |
           Keywords|                            |ice-on-valid-code
      Known to fail|                            |4.0.0
      Known to work|                            |3.4.4
   Last reconfirmed|0000-00-00 00:00:00         |2004-12-07 10:20:29
               date|                            |
            Summary|ICE in cp_expr_size, at     |[4.0 Regression] ICE in
                   |cp/cp-objcp-common.c:86     |cp_expr_size, at cp/cp-
                   |                            |objcp-common.c:86
   Target Milestone|---                         |4.0.0


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


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

* [Bug c++/18865] [4.0 Regression] ICE in cp_expr_size, at cp/cp-objcp-common.c:86
  2004-12-07  8:48 [Bug c++/18865] New: ICE in cp_expr_size, at cp/cp-objcp-common.c:86 aj at gcc dot gnu dot org
  2004-12-07  8:49 ` [Bug c++/18865] " aj at gcc dot gnu dot org
  2004-12-07 10:20 ` [Bug c++/18865] [4.0 Regression] " belyshev at lubercy dot com
@ 2004-12-07 12:24 ` lerdsuwa at gcc dot gnu dot org
  2004-12-07 15:13 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: lerdsuwa at gcc dot gnu dot org @ 2004-12-07 12:24 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From lerdsuwa at gcc dot gnu dot org  2004-12-07 12:24 -------
Bug related to PR18793.

-- 


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


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

* [Bug c++/18865] [4.0 Regression] ICE in cp_expr_size, at cp/cp-objcp-common.c:86
  2004-12-07  8:48 [Bug c++/18865] New: ICE in cp_expr_size, at cp/cp-objcp-common.c:86 aj at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2004-12-07 12:24 ` lerdsuwa at gcc dot gnu dot org
@ 2004-12-07 15:13 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-12-07 15:13 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-12-07 15:13 -------
This is a dup of bug 18793, just reduced differently.

*** This bug has been marked as a duplicate of 18793 ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |DUPLICATE


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


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

end of thread, other threads:[~2004-12-07 15:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-12-07  8:48 [Bug c++/18865] New: ICE in cp_expr_size, at cp/cp-objcp-common.c:86 aj at gcc dot gnu dot org
2004-12-07  8:49 ` [Bug c++/18865] " aj at gcc dot gnu dot org
2004-12-07 10:20 ` [Bug c++/18865] [4.0 Regression] " belyshev at lubercy dot com
2004-12-07 12:24 ` lerdsuwa at gcc dot gnu dot org
2004-12-07 15:13 ` 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).