Comments
Patch
===================================================================
@@ -186,7 +186,7 @@ check_invariant_table_size (void)
unsigned int new_size = DF_DEFS_TABLE_SIZE () +
(DF_DEFS_TABLE_SIZE () / 4);
invariant_table = XRESIZEVEC (struct invariant *,
invariant_table, new_size);
memset (&invariant_table[invariant_table_size], 0,
- (new_size - invariant_table_size) * sizeof (struct rtx_iv *));
+ (new_size - invariant_table_size) * sizeof (struct invariant *));
invariant_table_size = new_size;
Will commit as obvious somewhen... * loop-invariant.c (heck_invariant_table_size): Take sizeof of the right type. } }