aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/guality/pr54796.c
blob: f58e5a02cc6d404723c45c8b5ec9c982d1fa7759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* PR debug/54796 */
/* { dg-do run } */
/* { dg-options "-g" } */

__attribute__((noinline, noclone)) void
bar (char *a, int b)
{
  __asm volatile ("" : "+r" (a), "+r" (b) : : "memory");
}

__attribute__((noinline, noclone)) void
foo (int a, int b)
{
  int c = a;
  char d[b];	/* { dg-final { gdb-test 17 "a" "5" } } */
  bar (d, 2);	/* { dg-final { gdb-test 17 "b" "6" } } */
  bar (d, 4);	/* { dg-final { gdb-test 17 "c" "5" } } */
}

int
main ()
{
  foo (5, 6);
  return 0;
}