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 ();
}