aboutsummaryrefslogtreecommitdiff
path: root/tccgen.c
Commit message (Expand)AuthorAgeFilesLines
* Accept colon separated paths with -L and -Igrischka2011-08-011-0/+9
* Revert "Force const. expr. in expr_cond outside function"Thomas Preud'homme2011-07-311-1/+1
* Force const. expr. in expr_cond outside functionThomas Preud'homme2011-07-311-1/+1
* re-added negative-array-size testcase and fixed fix for itJoe Soroka2011-07-221-3/+3
* Revert "better constant handling for expr_cond"grischka2011-07-161-4/+1
* win64: va_arg with structuresgrischka2011-07-141-0/+4
* tccgen: reset aligned attribute for next typegrischka2011-07-141-0/+1
* handle arrays with a flexible member but no initializerJoe Soroka2011-07-111-1/+1
* better constant handling for expr_condJoe Soroka2011-07-111-1/+4
* Remove unused variablesThomas Preud'homme2011-05-161-1/+6
* use of TOK_alloca breaks cross compiler buildJoe Soroka2011-04-121-0/+4
* simplify/rollback VLA pointer subtractionJoe Soroka2011-04-111-10/+3
* remove no-longer-necessary naive fix for vla vstack leakJoe Soroka2011-04-091-5/+0
* prevent internal segfault on apparent VLA at file scopeJoe Soroka2011-04-091-0/+2
* VLA fix [3/3]: store VLA sizeofs in anonymous runtime stack varsJoe Soroka2011-04-091-33/+22
* VLA fix [2/3]: removed VT_ARRAY from VT_VLA typesJoe Soroka2011-04-081-20/+11
* move a comment to its correct locationJoe Soroka2011-04-081-1/+1
* add naive workaround for VLA vstack leakJoe Soroka2011-04-081-0/+5
* VLA bcheck works via bound alloca; add test, remove warningJoe Soroka2011-04-061-3/+1
* clarify post_type() VT_STORAGE handling by moving it outJoe Soroka2011-04-061-7/+7
* re-apply VLA by Thomas Preud'hommeJoe Soroka2011-04-061-30/+130
* handle c99 flexible array members less hackilyJoe Soroka2011-03-181-1/+18
* revert complicated & broken flexible array member handlingJoe Soroka2011-03-181-18/+4
* fix c99 for-loop init decl scope (thanks: grischka)Joe Soroka2011-03-081-0/+2
* clarify support for functions returning an array (try#2)Joe Soroka2011-03-081-4/+9
* revert last commit. fails "make test"Joe Soroka2011-03-081-8/+5
* clarify support for functions returning an arrayJoe Soroka2011-03-081-5/+8
* support c99 for-loop init decls (2nd attempt)Joe Soroka2011-03-081-3/+18
* partially revert e23194aJoe Soroka2011-03-081-19/+3
* revert last 3 commits. will find better way.Joe Soroka2011-03-081-96/+85
* small change to previous whitespace-only commitJoe Soroka2011-03-081-2/+2
* some indentation made prev patch pretty; removed itJoe Soroka2011-03-081-85/+81
* refactor post_type() to be explicit about its recursionJoe Soroka2011-03-081-5/+20
* added a note clarifying post_type() recursionJoe Soroka2011-03-081-0/+3
* support c99 for-loop init declsJoe Soroka2011-03-071-3/+19
* use new weaken_symbol() to fix another real-world corner caseJoe Soroka2011-03-071-1/+1
* factor out symbol weakening into new functionJoe Soroka2011-03-071-10/+17
* weak redefinition of a symbol should weaken the originalJoe Soroka2011-03-071-0/+3
* __typeof(t) should not include storage modifiers of tJoe Soroka2011-03-061-0/+2
* tccgen: handle __attribute((alias("target")))Joe Soroka2011-03-031-1/+24
* collapse branch in decl(), making way for next patchJoe Soroka2011-03-031-9/+9
* handle post-asm-label attributes on variablesJoe Soroka2011-03-031-25/+14
* tcc: fix weak attribute handlingJoe Soroka2011-03-021-6/+2
* fix another static struct init issue (arrays with unknown size at end)Jaroslav Kysela2011-02-221-4/+18
* Fix complex static initializers (handle additional '}' and '{' brackets)Jaroslav Kysela2011-02-221-4/+8
* Add support of asm label for variables.Thomas Preud'homme2011-02-091-10/+23
* Fix fct asm label: only valid for declarationThomas Preud'homme2011-02-091-53/+21
* Fix incorrect use of basic type as bitflags.Thomas Preud'homme2011-02-071-4/+3
* Complain for static fct declared w/o file scopeThomas Preud'homme2011-02-061-0/+4
* Revert "Implement C99 Variable Length Arrays"Thomas Preud'homme2011-02-051-130/+30