http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49270
--- Comment #7 from Uros Bizjak <ubizjak at gmail dot com> 2011-06-03 06:41:02 UTC --- (In reply to comment #3) > gcc_assert (k <= MAX_CLAUSES); > - clause = out.clause[k++] = lto_input_uleb128 (ib); > + out.clause[k++] = lto_input_uleb128 (ib); > + clause = out.clause[k++]; FYI, this change is not equivalent, you increased k twice.