Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr105185.c
blob: 6ab32360de1145cfeb4b92b029f6a30a21a965f4 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
int
foo
(
fmt
)
char
*
fmt
;
{
return
(
__builtin_strchr
(
fmt
,
'*'
)
!=
0
||
__builtin_strchr
(
fmt
,
'n'
)
!=
0
);
}
void
bar
()
{
if
(
foo
())
__builtin_abort
();
}