blob: 4c7e2490283410a8974f0becb22aacb055dd1d6a [file] [log] [blame]
extern char *strcpy (char *__dest, const char *__src);
static void test_menu_iteminfo( void )
{
int ansi = 1;
void *init, *string;
char initA[]="XYZ";
char stringA[0x80];
do {
if(ansi) {
string=stringA;
init = initA;
}
if(ansi)
strcpy( string, init );
} while( !(ansi = !ansi) );
}
/*
* check-name: kill-unreachable-phi
* check-description:
* In wine source tests/menu.c
* Improper killing a phi instruction inside not reachable BB cause
* dead loop on sparse.
*
* check-output-ignore
*
*/