view gcc/testsuite/gcc.dg/lto/pr60911_0.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-lto-do run }
// { dg-lto-options { { -O2 -flto -fipa-pta } } }

int __attribute__ ((__noinline__)) f (unsigned *p, int *x)
{
  int y = *p++ & 0xfff;
  *x++ = y;
  *x = *p;
  return y;
}

int
main ()
{
  unsigned u[2] = { 0x3aad, 0x5ad1 };
  int x[2] = { 17689, 23456 };

  if (f (u, x) != 0xaad || x[0] != 0xaad || x[1] != 0x5ad1)
    __builtin_abort ();
  return 0;
}