Re: Another potential issue with linearized output

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 21 March 2017 at 22:21, Dibyendu Majumdar <mobile@xxxxxxxxxxxxxxx> wrote:
> I have tracked this down to the treatment of variable n2.

Here is a small program that reproduces the issue:

static int regc(void)
{
  char r00, r01, r02;
  int s, n1, n2, j, d[2];
  r00 = 0;
  r01 = 1;
  r02 = 2;
  d[0] = &r01 - &r00;
  d[1] = &r02 - &r01;

  n1 = d[0];
  s = 1;

  for (j = 0; j < 2; j++)
    switch (s) {
    case 1:
      n2 = d[j];
      break;
    case 2:
      if (d[j] == n2) {
        break;
      }
      s = 4;
      break;
    };
  return s;
}

Thanks and Regards
Dibyendu
--
To unsubscribe from this list: send the line "unsubscribe linux-sparse" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Newbies FAQ]     [LKML]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Trinity Fuzzer Tool]

  Powered by Linux