public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "martin dot audet at imi dot cnrc-nrc dot gc dot ca" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/24906]  New: ICE When using -fmudflap on a simple C++ source file
Date: Wed, 16 Nov 2005 21:17:00 -0000	[thread overview]
Message-ID: <bug-24906-11356@http.gcc.gnu.org/bugzilla/> (raw)

Hi,

I get the following message when I try to compile a simple C++ source file
using strings:

strbug.cpp: In member function 'void AClass::meth(AClass::AnInterface&)':
strbug.cpp:17: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://bugzilla.redhat.com/bugzilla> for instructions.
Preprocessed source stored into /tmp/ccvs6PL2.out file, please attach this to
your bugreport.

This happens when I compile as follow:

g++ -Wall -fmudflap -c strbug.cpp

Without the -fmudflap flag, there is no ICE.

The corresponding source file is:

#include <string>

class AClass {
private:
   std::string name;

public:
   class AnInterface {
   public:
      virtual bool intf_meth(AClass &p_aclass) = 0;
      virtual ~AnInterface(void) { }
   };

   void meth(AnInterface &p_interf);
};

void AClass::meth(AnInterface &p_interf)
{
   name = std::string();

   p_interf.intf_meth(*this);
}

I did not included the preprocessed source file since it is more than 19k lines
long.

Note also that I'm using Fedora Core 4 Linux with the gcc update installed
(this is why it is version 4.0.1).

Regards,

Martin


-- 
           Summary: ICE When using -fmudflap on a simple C++ source file
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: martin dot audet at imi dot cnrc-nrc dot gc dot ca
 GCC build triplet: x86_64-unknown-linux-gnu
  GCC host triplet: x86_64-unknown-linux-gnu
GCC target triplet: x86_64-unknown-linux-gnu


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


             reply	other threads:[~2005-11-16 21:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-11-16 21:17 martin dot audet at imi dot cnrc-nrc dot gc dot ca [this message]
2005-11-16 21:20 ` [Bug c++/24906] " pinskia at gcc dot gnu dot org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-24906-11356@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).