Displaying 2 results from an estimated 2 matches for "1937f35d".
2018 Sep 18
2
Regarding Dependence distance dump
Hi,
For the below test case, I need the dependence distance between the array
references "a[j][i]" and "a[j-1][i-2]".
--Snip--
int a[5][5];
int b[10];
void test()
{
for (int j=1;j<5;j++)
for (int i=2;i<5;i++)
{
a[j][i] = 3.0;
b[i]= a[j-1][i-2] ;
}
}
--Snip-
2018 Sep 19
2
Regarding Dependence distance dump
...it is now showing directions instead of distances.
>> How to get the dependence distance?
>>
>> regards,
>> Venkat.
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180919/1937f35d/attachment.html>