public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/19266] [mudflap] ICE when compiling with -fmudflap -O
Date: Wed, 05 Jan 2005 20:36:00 -0000	[thread overview]
Message-ID: <20050105203632.24550.qmail@sourceware.org> (raw)
In-Reply-To: <20050105154223.19266.martin@mpa-garching.mpg.de>


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-01-05 20:36 -------
Confirmed, reduced (as much as I can get it) testcase (about 50 lines):
typedef unsigned int size_t;
struct basic_string1
{
  basic_string1(const basic_string1& __str);
  basic_string1(const char* __s);
  ~basic_string1();
};
struct fitscolumn
  {
    basic_string1 name_, unit_;
   int i, t;
    fitscolumn (const basic_string1 &nm, const basic_string1 &un,int i1,int t1)
      : name_(nm), unit_(un), i(i1), t(t1){}
  };
struct iterator { };
struct vector_type
{
  typedef fitscolumn _Tp;
  struct
  {
    _Tp* _M_start;
    _Tp* _M_finish;
    _Tp* _M_end_of_storage;
    void construct(_Tp *__p, const _Tp& __val);
  } _M_impl;
  iterator end();
  void push_back(const _Tp& __x)
  {
    if (this->_M_impl._M_finish != this->_M_impl._M_end_of_storage)
    {
      this->_M_impl.construct(this->_M_impl._M_finish, __x);
      ++this->_M_impl._M_finish;
    }
    else
      _M_insert_aux(end(), __x);
  }
  void _M_fill_insert(iterator __pos, int __n, const _Tp& __x);
  void _M_insert_aux(iterator __position, const _Tp& __x);
};
void init_bintab(vector_type & columns_)
{
  char ttype[81], tunit[81], tform[81];
  long repc;
  int typecode;
  columns_.push_back (fitscolumn (ttype,tunit,1,typecode));
}


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-01-05 20:36:31
               date|                            |


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


  parent reply	other threads:[~2005-01-05 20:36 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-01-05 15:43 [Bug other/19266] New: " martin at mpa-garching dot mpg dot de
2005-01-05 15:44 ` [Bug other/19266] " martin at mpa-garching dot mpg dot de
2005-01-05 15:46 ` martin at mpa-garching dot mpg dot de
2005-01-05 15:51 ` pinskia at gcc dot gnu dot org
2005-01-05 15:51 ` pinskia at gcc dot gnu dot org
2005-01-05 19:41 ` pinskia at gcc dot gnu dot org
2005-01-05 19:45 ` martin at mpa-garching dot mpg dot de
2005-01-05 20:36 ` pinskia at gcc dot gnu dot org [this message]
2005-01-06  2:50 ` fche at redhat dot com
2005-04-08 13:51 ` pinskia at gcc dot gnu dot org
2005-04-12 16:50 ` fche at redhat dot com
2005-04-12 18:09 ` cvs-commit at gcc dot gnu dot org
2005-04-12 18:10 ` fche at redhat dot com
2005-06-15  3:29 ` pinskia at gcc dot gnu dot org
2005-06-23 11:35 ` reichelt at gcc dot gnu dot org
2005-08-15 14:12 ` pinskia at gcc dot gnu dot org
2005-08-24 11:54 ` pinskia at gcc dot gnu dot org
     [not found] <bug-19266-2736@http.gcc.gnu.org/bugzilla/>
2005-11-16 21:20 ` pinskia at gcc dot gnu dot org
2005-12-06 22:38 ` pinskia at gcc dot gnu dot org
2006-01-24 15:50 ` 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=20050105203632.24550.qmail@sourceware.org \
    --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).