aboutsummaryrefslogtreecommitdiff
path: root/tcc.c
Commit message (Expand)AuthorAgeFilesLines
* fixed -w option - doc update (thanx to Romain Francoise)bellard2003-10-041-12/+6
* added -w optionbellard2003-09-191-1/+16
* changed tcc_get_symbol() prototypebellard2003-07-201-3/+4
* fixed typdefed type parsing (Mauro Persano)bellard2003-07-201-2/+9
* reject abstract declarators in function definition (Mauro Persano)bellard2003-07-201-0/+7
* suppressed warning for const function parametersbellard2003-06-021-1/+3
* help updatebellard2003-05-241-0/+1
* added -rdynamic supportbellard2003-05-241-1/+7
* changed license to LGPLbellard2003-05-241-11/+11
* fixed zero arg macro parsebellard2003-05-181-1/+1
* fixed macro argument substitutionbellard2003-05-181-10/+12
* alacarte linking (Dave Long)bellard2003-04-281-0/+4
* added -nostdlibbellard2003-04-271-5/+10
* added __builtin_constant_p() and __builtin_types_compatible_p() supportbellard2003-04-261-4/+44
* more precise C type check support (const warnings) - added generic -W option ...bellard2003-04-261-91/+272
* default output object filename is basename of input filename (same behaviour ...bellard2003-04-161-1/+19
* simpler function call APIbellard2003-04-161-112/+50
* switch label parse fixbellard2003-04-141-3/+7
* compile fixbellard2003-04-131-0/+1
* added __TIME__ and __DATE__ support - added -v and -run optionsbellard2003-04-131-23/+38
* configure supportbellard2003-04-131-6/+6
* fixed macro function bugbellard2003-04-131-0/+11
* fixed comment parsingbellard2003-04-131-35/+46
* sanitized string and character constant parsingbellard2003-04-131-170/+215
* comment fixes (Peter Lund)bellard2003-04-131-14/+14
* function parameters must be converted to pointer of functionsbellard2003-04-131-5/+14
* better _Bool lvalue supportbellard2003-04-131-1/+1
* struct syntax fixbellard2003-04-131-2/+3
* macro opt - asm support - new option parsing - supressed IL codebellard2003-01-061-423/+982
* FreeBSD fixes - file type guessing - glibc2.2 fixes - ELF align issuebellard2002-12-081-15/+31
* added static bit fields init - version change - #error and #warning fix - sup...bellard2002-11-241-17/+31
* fixed structure type test - fixed enum parsing - added warning for int/ptr co...bellard2002-11-241-7/+26
* added empty structs support - changed double align to 4 (i386 default ABI) - ...bellard2002-11-241-39/+59
* fixed structure init without {} - fixed function declaration parsebellard2002-11-231-5/+17
* optimized unary() - fix long long signed comparisonsbellard2002-11-231-134/+189
* fixed line numberingbellard2002-11-231-5/+2
* expression optimizationbellard2002-11-231-29/+119
* optimized token strings - optimized token hashingbellard2002-11-231-65/+193
* parsing optimizationsbellard2002-11-231-214/+315
* prepared parser for direct use of file->buf_ptr - faster comment parsingbellard2002-11-221-32/+74
* restored include file optimization - added static on all globalsbellard2002-11-221-134/+134
* suppressed ch1 and preparserbellard2002-11-221-137/+238
* error message fixes - CH_EOB is now '\'bellard2002-11-221-6/+12
* use CH_EOBbellard2002-11-221-4/+16
* further parse optimizationsbellard2002-11-221-13/+17
* suppressed secondary hash tables - began parsing optimizationbellard2002-11-201-136/+390
* added CType structure for type storage - supressed define hash table - added ...bellard2002-11-181-500/+624
* added computed gotos - better runtime error handlingbellard2002-11-031-65/+179
* added alignof and typeof - better sizeof support - fixed get_tok_str() for TO...bellard2002-11-021-163/+227
* added correct ## handling : added TOK_PPNUM tokenbellard2002-11-021-89/+163