public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/42760]  New: [4.4 Regression] ICE in convert_move
@ 2010-01-15 15:48 jakub at gcc dot gnu dot org
  2010-01-15 16:10 ` [Bug middle-end/42760] " jakub at gcc dot gnu dot org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: jakub at gcc dot gnu dot org @ 2010-01-15 15:48 UTC (permalink / raw)
  To: gcc-bugs

// { dg-do compile }
// { dg-options "-O2" }

template <typename T>
struct A
{
  static T b (T it) { return it; }
};

template <typename T, typename U>
static U
baz (T x, T y, U z)
{
  for (long n = y - x; n > 0; --n)
    {
      *z = *x;
      ++z;
    }
};

template <typename T, typename U>
U
bar (T x, T y, U z)
{
  baz (A <T>::b (x), A <T>::b (y), A <U>::b (z));
}

struct C
{
  __complex__ float v;
};

template <class T>
struct B
{
  B (T y[]) { bar (y, y + 1, x); }
  operator T *() { return x; }
  T x[1];
};

B <C>
foo ()
{
  C y[1];
  return B <C> (y);
};

ICEs in convert_move on x86_64.  Works with 4.3 or 4.5.


-- 
           Summary: [4.4 Regression] ICE in convert_move
           Product: gcc
           Version: 4.4.3
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code
          Severity: normal
          Priority: P3
         Component: middle-end
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: jakub at gcc dot gnu dot org
GCC target triplet: x86_64-linux


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


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-01-16 15:24 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-01-15 15:48 [Bug middle-end/42760] New: [4.4 Regression] ICE in convert_move jakub at gcc dot gnu dot org
2010-01-15 16:10 ` [Bug middle-end/42760] " jakub at gcc dot gnu dot org
2010-01-15 16:24 ` rguenth at gcc dot gnu dot org
2010-01-15 17:02 ` jakub at gcc dot gnu dot org
2010-01-16  9:45 ` jakub at gcc dot gnu dot org
2010-01-16  9:46 ` jakub at gcc dot gnu dot org
2010-01-16 15:24 ` jakub at gcc dot gnu dot org

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).