From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31495 invoked by alias); 14 Sep 2012 00:33:07 -0000 Received: (qmail 31483 invoked by uid 22791); 14 Sep 2012 00:33:06 -0000 X-SWARE-Spam-Status: No, hits=-3.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 14 Sep 2012 00:32:54 +0000 From: "bangerth at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/54575] New: ICE with std::vector::insert and -std=c++11 Date: Fri, 14 Sep 2012 00:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: bangerth at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2012-09/txt/msg01068.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54575 Bug #: 54575 Summary: ICE with std::vector::insert and -std=c++11 Classification: Unclassified Product: gcc Version: 4.8.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ AssignedTo: unassigned@gcc.gnu.org ReportedBy: bangerth@gmail.com The following currently produces an ICE when using -std=c++11: ...................... #include template void foo() { std::vector local_dof_indices; std::vector subdomain_indices; subdomain_indices.insert(subdomain_indices.end(), local_dof_indices.begin(), local_dof_indices.end()); } ...................... >>>> /home/bangerth/bin/gcc-mainline/bin/gcc -v Using built-in specs. COLLECT_GCC=/home/bangerth/bin/gcc-mainline/bin/gcc COLLECT_LTO_WRAPPER=/home/bangerth/bin/gcc-mainline/lib/gcc/x86_64-unknown-linux-gnu/4.8.0/lto-wrapper Target: x86_64-unknown-linux-gnu Configured with: ../mainline/configure --prefix=/home/bangerth/bin/gcc-mainline --enable-languages=c,c++ --disable-multilib Thread model: posix gcc version 4.8.0 20120913 (experimental) [trunk revision 183295] (GCC) >>>> /home/bangerth/bin/gcc-mainline/bin/gcc -c -std=c++11 x.cc In file included from /home/bangerth/bin/gcc-mainline/include/c++/4.8.0/vector:65:0, from dofs/dof_tools.cc:1: /home/bangerth/bin/gcc-mainline/include/c++/4.8.0/bits/stl_vector.h: In function 'void foo()': /home/bangerth/bin/gcc-mainline/include/c++/4.8.0/bits/stl_vector.h:1042:9: internal compiler error: tree check: expected class 'type', have 'exceptional' (error_mark) in strip_typedefs, at cp/tree.c:1215 typename = std::_RequireInputIter<_InputIterator>> ^ Please submit a full bug report, with preprocessed source if appropriate. See for instructions.