Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gcc.target
/
powerpc
/
bmi-check.h
blob: 907cef788653c260634bdb3dbbfda3c9c56f1c09 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<stdlib.h>
static
void
bmi_test
(
void
);
static
void
__attribute__
((
noinline
))
do_test
(
void
)
{
bmi_test
();
}
int
main
()
{
do_test
();
#ifdef
DEBUG
printf
(
"PASSED\n"
);
#endif
return
0
;
}