2 /* { dg-options "-g" } */
3 /* { dg-skip-if "" { *-*-* } { "*" } { "-O0" "-O1" } } */
5 typedef __UINTPTR_TYPE__
uintptr_t;
7 __attribute__((noinline
, noclone
)) int
13 typedef struct { uintptr_t pa
; uintptr_t pb
; } fatp_t
14 __attribute__ ((aligned (2 * __alignof__ (uintptr_t))));
16 __attribute__((noinline
, noclone
)) void
17 foo (fatp_t str
, int a
, int b
)
20 if (i
== 0) /* BREAK */
27 fatp_t ptr
= { 31415927, 27182818 };
32 /* { dg-final { gdb-test 20 "str.pa" "31415927" } } */
33 /* { dg-final { gdb-test 20 "str.pb" "27182818" } } */