view gcc/testsuite/gcc.c-torture/compile/pr40676.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

extern int f1();
extern int f2(void*);
extern void* f3(int);
int xmsih;
typedef unsigned short XWCHAR;

inline unsigned int xstrlenW( const XWCHAR *str )
{
    const XWCHAR *s = str;
    while (*s) s++;
    return s - str;
}


static int msi_dialog_register_class( void )
{
    int cls;

    if( !f2( &cls ) )
        return 0;
    if( !f2( &cls ) )
        return 0;
    xmsih = f1();
    if( !xmsih )
        return 0;
    return 1;
}

void *xmsi_dialog_create(const XWCHAR* szDialogName)
{
    msi_dialog_register_class();
    return f3(xstrlenW(szDialogName));
}