Commit f75e1f1e by Alexandre Oliva Committed by Alexandre Oliva

re PR bootstrap/49270 (make BOOT_CFLAGS="-g -O3" CFLAGS_FOR_TARGET="-g -O3"…

re PR bootstrap/49270 (make BOOT_CFLAGS="-g -O3" CFLAGS_FOR_TARGET="-g -O3" CXXFLAGS_FOR_TARGET="-g -O3" failure)

PR bootstrap/49270
* ipa-inline-analysis.c (read_predicate): Initialize all clauses.

From-SVN: r174697
parent 275311c4
2011-06-06 Alexandre Oliva <aoliva@redhat.com>
PR bootstrap/49270
* ipa-inline-analysis.c (read_predicate): Initialize all clauses.
2011-06-06 Mikael Pettersson <mikpe@it.uu.se>
PR tree-optimization/49243
......
......@@ -2301,6 +2301,11 @@ read_predicate (struct lto_input_block *ib)
clause = out.clause[k++] = lto_input_uleb128 (ib);
}
while (clause);
/* Zero-initialize the remaining clauses in OUT. */
while (k <= MAX_CLAUSES)
out.clause[k++] = 0;
return out;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment