tinycc-devel
[Top][All Lists]
Advanced

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

Re: [Tinycc-devel] parsing error in mob branch


From: grischka
Subject: Re: [Tinycc-devel] parsing error in mob branch
Date: Sat, 21 Aug 2010 13:41:48 +0200
User-agent: Thunderbird 2.0.0.23 (Windows/20090812)

Should work again.  See
http://repo.or.cz/w/tinycc.git/commitdiff/4ab4efd3a69e0e10262b3010aa9162e73b1cddfb

--- grischka

Aharon Robbins wrote:
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]