tinycc-devel
[Top][All Lists]
Advanced

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

[Tinycc-devel] parsing error in mob branch


From: Aharon Robbins
Subject: [Tinycc-devel] parsing error in mob branch
Date: Thu, 19 Aug 2010 22:07:38 +0300
User-agent: Heirloom mailx 12.4 7/29/08

Hi.

There is a problem in the mob branch as demonstrated by the code
below. I get this error:

$ tcc foo.c
foo.c:11: error: ')' expected (got ";")

Thanks!

Arnold Robbins
-------------------------------------------
struct x {
        int nelem;
};

int main(int argc, char **argv)
{
        int i = 0;
        struct x y = { 42 };
        struct x* p = &y;

        for (--p->nelem; i < 10; i++)
                break;
}



reply via email to

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