Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
attrib8.C
blob: 130fe258701fd6e787d6d26ed3a1c188e422ad29 [
file
] [
log
] [
blame
]
// PR 8656
// { dg-do compile { target { { i?86-*-* x86_64-*-* } && ia32 } } }
extern
int
*
(
__attribute__
((
stdcall
))
*
fooPtr
)(
void
);
int
*
__attribute__
((
stdcall
))
myFn01
(
void
)
{
return
0
;
}
void
snafu
(
void
)
{
fooPtr
=
myFn01
;
}