tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Tinycc-devel] TCC crashes on invalid structure reference


From: Mike
Subject: [Tinycc-devel] TCC crashes on invalid structure reference
Date: Tue, 06 Nov 2007 01:53:27 -0500
User-agent: Thunderbird 2.0.0.6 (Windows/20070728)

See the attached crash.c.  Compile with "tcc crash.c"


typedef struct _hello
{
        int an_integer;
} hello;

void dosomething1(hello *s)
{
}

#if 1
void dosomething2(hello_bad_undefined *s)
{
}
#endif

int main(void)
{
        return 0;
}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]