Commit 66846c07 by Richard Biener Committed by Richard Biener

tree-switch-conversion.c (emit_case_bit_tests): Adjust initializer to workaround…

tree-switch-conversion.c (emit_case_bit_tests): Adjust initializer to workaround ICE in host GCC 4.8.

2017-06-16  Richard Biener  <rguenther@suse.de>

	* tree-switch-conversion.c (emit_case_bit_tests): Adjust
	initializer to workaround ICE in host GCC 4.8.

From-SVN: r249245
parent 7d72a77f
2017-06-16 Richard Biener <rguenther@suse.de>
* tree-switch-conversion.c (emit_case_bit_tests): Adjust
initializer to workaround ICE in host GCC 4.8.
2017-06-16 Jan Hubicka <hubicka@ucw.cz>
* ipa-inline-transform.c (update_noncloned_frequencies): Update also
......
......@@ -268,7 +268,7 @@ static void
emit_case_bit_tests (gswitch *swtch, tree index_expr,
tree minval, tree range, tree maxval)
{
struct case_bit_test test[MAX_CASE_BIT_TESTS] = { };
struct case_bit_test test[MAX_CASE_BIT_TESTS] = { {} };
unsigned int i, j, k;
unsigned int count;
......
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