コード例 #1
0
int 
i_can_not_be_propagated_fully2 (int *a)
{
  i_can_not_be_propagated_fully (a);
  i_can_not_be_propagated_fully (a);
  i_can_not_be_propagated_fully (a);
}
コード例 #2
0
int
i_can_not_be_propagated_fully2 (int *a)
{
  int i;
  i_can_not_be_propagated_fully (a);
  for (i=0;i<50;i++)
  {
    t(a[i] + 1);
    t(a[i+1] + 1);
    t(a[i+2] + 1);
    t(a[i+3] + 1);
  }
  i_can_not_be_propagated_fully (a);
  for (i=0;i<50;i++)
  {
    t(a[i] + 2);
    t(a[i+1] + 2);
    t(a[i+2] + 2);
    t(a[i+3] + 2);
  }
  i_can_not_be_propagated_fully (a);
}