re PR c/79116 (ICE on cilkplus array notation with a _Cilk_for)

PR c/79116
	* array-notation-common.c (cilkplus_extract_an_triplets): Convert
	start type to integer_type.

From-SVN: r244533
This commit is contained in:
Aldy Hernandez 2017-01-17 15:27:18 +00:00 committed by Aldy Hernandez
parent c6b8b5e4d3
commit 7f991c3616
3 changed files with 18 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2017-01-17 Aldy Hernandez <aldyh@redhat.com>
PR c/79116
* array-notation-common.c (cilkplus_extract_an_triplets): Convert
start type to integer_type.
2017-01-16 Jakub Jelinek <jakub@redhat.com>
PR driver/49726

View File

@ -628,7 +628,9 @@ cilkplus_extract_an_triplets (vec<tree, va_gc> *list, size_t size, size_t rank,
tree ii_tree = array_exprs[ii][jj];
(*node)[ii][jj].is_vector = true;
(*node)[ii][jj].value = ARRAY_NOTATION_ARRAY (ii_tree);
(*node)[ii][jj].start = ARRAY_NOTATION_START (ii_tree);
(*node)[ii][jj].start
= fold_build1 (CONVERT_EXPR, integer_type_node,
ARRAY_NOTATION_START (ii_tree));
(*node)[ii][jj].length
= fold_build1 (CONVERT_EXPR, integer_type_node,
ARRAY_NOTATION_LENGTH (ii_tree));

View File

@ -0,0 +1,9 @@
/* { dg-do compile } */
/* { dg-options "-fcilkplus" } */
int array[1024];
void foo()
{
_Cilk_for (int i = 0; i < 512; ++i)
array[:] = __sec_implicit_index(0);
}