Create embedded-5_0-branch branch for development on ARM embedded cores.
[official-gcc.git] / embedded-5_0-branch / gcc / testsuite / gcc.dg / guality / pr54519-6.c
blob836ab1f6601cc173f606b559f1c074db9e03d38a
1 /* PR debug/54519 */
2 /* { dg-do run } */
3 /* { dg-options "-g" } */
5 #include "../nop.h"
7 static inline void
8 f1 (int x, int y)
10 asm volatile (NOP); /* { dg-final { gdb-test 11 "x" "2" } } */
11 asm volatile (NOP); /* { dg-final { gdb-test 11 "y" "0" } } */
14 static inline void
15 f2 (int z)
17 f1 (z, 0);
18 f1 (z, 1);
21 int
22 main ()
24 f2 (2);
25 f2 (3);
26 return 0;