Implement FINDLOC for UNSIGNED.
[official-gcc.git] / gcc / testsuite / gcc.dg / guality / pr54551.c
blob75f9c2a7e1d6b03c37a39316930c7bedc79330d0
1 /* PR debug/54551 */
2 /* { dg-do run } */
3 /* { dg-options "-g" } */
5 void __attribute__((__noinline__))
6 bar (void)
8 asm volatile ("");
11 int __attribute__((__noinline__))
12 foo (int x, int y, int z)
14 if (x != z)
16 int a = z + 1;
17 bar (); /* { dg-final { gdb-test .+1 "a" "4" } } */
18 bar (); /* { dg-final { gdb-test . "z" "3" } } */
20 return y;
23 int
24 main ()
26 foo (1, 2, 3);
27 return 0;