This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c/41630] [4.3/4.4 Regression] Optimization error on vectors of uint64_t



------- Comment #7 from rguenth at gcc dot gnu dot org  2010-03-15 14:56 -------
Joseph, is this a valid testcase?

typedef unsigned long obj[1];
extern void abort (void);
int main()
{
    obj X[2];
    X[1][0] = 67890;
    if (X[0][1] != 67890)
      abort ();
    return 0;
}


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jsm28 at gcc dot gnu dot org


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]