[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Tinycc-devel] Compound Literals
From: |
Andrew Johnson |
Subject: |
[Tinycc-devel] Compound Literals |
Date: |
Tue, 26 Sep 2006 00:33:28 -0400 (EDT) |
I have been using tcc -run for quick development(and am very happy with that),
but I recently also tried compiling some older code of mine, and got lots of
strange "lvalue" expected, and traced it down to compound literals - something
like
struct point { int X; int Y; } *test = &((struct point){1, 1});
Is this a bug in compound literals support, or does tcc currently not support
them at all?
Thanks,
Andrew
- [Tinycc-devel] Compound Literals,
Andrew Johnson <=