This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug bootstrap/49270] make BOOT_CFLAGS="-g -O3" CFLAGS_FOR_TARGET="-g -O3" CXXFLAGS_FOR_TARGET="-g -O3" failure
- From: "ubizjak at gmail dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Fri, 3 Jun 2011 06:41:20 +0000
- Subject: [Bug bootstrap/49270] make BOOT_CFLAGS="-g -O3" CFLAGS_FOR_TARGET="-g -O3" CXXFLAGS_FOR_TARGET="-g -O3" failure
- Auto-submitted: auto-generated
- References: <bug-49270-4@http.gcc.gnu.org/bugzilla/>
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.