[Bug tree-optimization/37955] [4.4 Regression] internal compiler error: in vectorizable_store, at tree-vect-transform.c:5447
ubizjak at gmail dot com
gcc-bugzilla@gcc.gnu.org
Thu Nov 6 22:12:00 GMT 2008
------- Comment #7 from ubizjak at gmail dot com 2008-11-06 22:11 -------
Reduced testcase, fails also on x86_64-pc-linux-gnu and i686-pc-linux-gnu/sse2,
gcc version 4.4.0 20081106 (experimental) [trunk revision 141649] (GCC)
--cut here--
typedef struct
{
enum { NotConnected = 0 } conn_state;
unsigned int conn_hndl;
} AEP_CONNECTION_ENTRY;
static AEP_CONNECTION_ENTRY aep_app_conn_table[256];
void aep_mod_exp (void)
{
int count;
for (count = 0; count < 256; count++)
{
aep_app_conn_table[count].conn_state = NotConnected;
aep_app_conn_table[count].conn_hndl = 0;
}
}
--cut here--
--
ubizjak at gmail dot com changed:
What |Removed |Added
----------------------------------------------------------------------------
GCC host triplet|i686-pc-linux-gnu |
GCC target triplet|x86_64-pc-mingw32 |x86-pc-linux-gnu
Known to work| |4.3.2
Target Milestone|--- |4.4.0
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37955
More information about the Gcc-bugs
mailing list