view gcc/testsuite/gcc.dg/nested-func-11.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
line wrap: on
line source

/* { dg-do run } */
/* { dg-options "-O2 -fno-omit-frame-pointer" } */

int __attribute__((noipa)) foo (int i)
{
  int a;

  void __attribute__((noipa)) nested2 (int i)
  {
    a = i;
  }

  void  __attribute__((noipa)) nested1 (int i)
  {
    int b[32];

    for (int j = 0; j < 32; j++)
      b[j] = i + j;

    nested2 (b[i]);
  }

  nested1 (i);

  return a;
}

int main (void)
{
  if (foo (4) != 8)
    __builtin_abort ();

  return 0;
}