From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1042 invoked by alias); 5 Jan 2005 19:41:18 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 1003 invoked by uid 48); 5 Jan 2005 19:41:14 -0000 Date: Wed, 05 Jan 2005 19:41:00 -0000 Message-ID: <20050105194114.1002.qmail@sourceware.org> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20050105154223.19266.martin@mpa-garching.mpg.de> References: <20050105154223.19266.martin@mpa-garching.mpg.de> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug other/19266] [mudflap] ICE when compiling with -fmudflap -O X-Bugzilla-Reason: CC X-SW-Source: 2005-01/txt/msg00514.txt.bz2 List-Id: ------- Additional Comments From pinskia at gcc dot gnu dot org 2005-01-05 19:41 ------- The simple case (with includes to libstdc++ still there): #include #include class fitscolumn { private: std::string name_, unit_; int i, t; public: fitscolumn (const std::string &nm, const std::string &un,int i1,int t1) : name_(nm), unit_(un), i(i1), t(t1){} }; void init_bintab(std::vector & columns_) { char ttype[81], tunit[81], tform[81]; long repc; int typecode; columns_.push_back (fitscolumn (ttype,tunit,1,typecode)); } I am working on reducing that preprocessed, I have it done to about 5800 lines right now. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19266