From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14978 invoked by alias); 19 Aug 2014 12:10:24 -0000 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 Received: (qmail 14950 invoked by uid 48); 19 Aug 2014 12:10:18 -0000 From: "james1479 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/62186] New: segfault on map.insert Date: Tue, 19 Aug 2014 12:10: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-Version: 4.9.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: james1479 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-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2014-08/txt/msg01276.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62186 Bug ID: 62186 Summary: segfault on map.insert Product: gcc Version: 4.9.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: james1479 at gmail dot com Getting a segfault on map.insert if called as a global initialiser from another source file. #### a.cpp #### #include std::map m; int g() { m.insert( std::pair(1,1) ); return 0; } #### main.cpp #### int g(int i); int a = g(1); int main() { return 0; } ################## This code either works or segfaults depending on which order they are passed to g++: % g++ a.cpp main.cpp % ./a.out % g++ main.cpp a.cpp % ./a.out [1] 9548 segmentation fault (core dumped) ./a.out This also happens if they are compiled to .o files and linked together: % g++ -c a.cpp % g++ -c main.cpp % g++ a.o main.o % ./a.out % g++ main.o a.o % ./a.out [1] 10485 segmentation fault (core dumped) ./a. The program works if compiled as a single source program. Or if `int a = g(1);` is moved inside the main function. Or if m.clear() is called before the insert. g++ version (from archlinux repo): Using built-in specs. COLLECT_GCC=g++ COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.1/lto-wrapper Target: x86_64-unknown-linux-gnu Configured with: /build/gcc/src/gcc-4.9.1/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-cloog-backend=isl --disable-isl-version-check --disable-cloog-version-check --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --disable-multilib --disable-werror --enable-checking=release Thread model: posix gcc version 4.9.1 (GCC)