PR debug/45003
[official-gcc/alias-decl.git] / gcc / testsuite / gcc.dg / guality / pr45003-1.c
blob7cef8f6284c8b814b1fe0cd78a1d9cc6013fb262
1 /* PR debug/45003 */
2 /* { dg-do run { target { x86_64-*-* && lp64 } } } */
3 /* { dg-options "-g" } */
5 int __attribute__((noinline))
6 foo (unsigned short *p)
8 int a = *p;
9 asm volatile ("nop");
10 asm volatile ("nop" : : "D" (a)); /* { dg-final { gdb-test 10 "a" "0x8078" } } */
11 return 0;
14 int __attribute__((noinline))
15 bar (short *p)
17 unsigned int a = *p;
18 asm volatile ("nop");
19 asm volatile ("nop" : : "D" (a)); /* { dg-final { gdb-test 19 "a" "0xffff8078" } } */
20 return 0;
23 int
24 main ()
26 unsigned short us = 0x8078;
27 foo (&us);
28 short s = -32648;
29 bar (&s);
30 return 0;