Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr67120.c
blob: d22b314bd3fe83d726a414b8dd743c0ef33e1f6b [
file
] [
log
] [
blame
]
/* { dg-do run } */
volatile
int
*
volatile
*
a
;
static
volatile
int
*
volatile
**
b
=
&
a
;
int
main
()
{
volatile
int
*
volatile
c
;
*
b
=
&
c
;
if
(
a
!=
&
c
)
__builtin_abort
();
return
0
;
}