diff options
| author | Thomas Preud'homme <thomas.preudhomme@celest.fr> | 2011-02-05 02:31:45 +0100 |
|---|---|---|
| committer | Thomas Preud'homme <thomas.preudhomme@celest.fr> | 2011-02-05 02:33:46 +0100 |
| commit | db560e9439deaef3c15aa353828fd4d98a1b5f8c (patch) | |
| tree | cc7562b43ced3312f8950bc2daacf4de39aed607 /tcc.h | |
| parent | 38f6467c065930c14c30a228920f319924ba0583 (diff) | |
| download | tinycc-db560e9439deaef3c15aa353828fd4d98a1b5f8c.tar.gz tinycc-db560e9439deaef3c15aa353828fd4d98a1b5f8c.tar.bz2 | |
Revert "Implement C99 Variable Length Arrays"
This reverts commit a5a50eaafeea0d3ca47bc8fb6baf983743470c60.
Diffstat (limited to 'tcc.h')
| -rw-r--r-- | tcc.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -224,7 +224,6 @@ typedef struct Sym { union { long c; /* associated number */ int *d; /* define token stream */ - SValue *s; /* associated stack value */ }; CType type; /* associated type */ union { @@ -617,7 +616,6 @@ struct TCCState { #define VT_BTYPE 0x000f /* mask for basic type */ #define VT_UNSIGNED 0x0010 /* unsigned type */ #define VT_ARRAY 0x0020 /* array type (also has VT_PTR) */ -#define VT_VLA 0x10000 /* VLA type (also has VT_PTR and VT_ARRAY) */ #define VT_BITFIELD 0x0040 /* bitfield modifier */ #define VT_CONSTANT 0x0800 /* const modifier */ #define VT_VOLATILE 0x1000 /* volatile modifier */ |
