Commit 5ed895a7 by Jakub Jelinek Committed by Jakub Jelinek

re PR middle-end/88758 (186.crafty in SPEC CPU 2000 failed to build)

	PR middle-end/88758
	* tree.c (initializer_each_zero_or_onep) <case VECTOR_CST>: Use
	vector_cst_elt instead of VECTOR_CST_ENCODED_ELT.

From-SVN: r267760
parent a811a0a8
2019-01-09 Jakub Jelinek <jakub@redhat.com>
2019-01-09 Jelinek <jakub@redhat.com>
PR middle-end/88758
* tree.c (initializer_each_zero_or_onep) <case VECTOR_CST>: Use
vector_cst_elt instead of VECTOR_CST_ENCODED_ELT.
PR rtl-optimization/88331
* function.c (assign_stack_local_1): Don't set dynamic_align_addr if
......
......@@ -11255,7 +11255,7 @@ initializer_each_zero_or_onep (const_tree expr)
for (unsigned int i = 0; i < nelts; ++i)
{
tree elt = VECTOR_CST_ENCODED_ELT (expr, i);
tree elt = vector_cst_elt (expr, i);
if (!initializer_each_zero_or_onep (elt))
return false;
}
......
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