aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* [PATCH] Add support for GCC's __builtin_types_compatible_p extensionJosh Triplett2006-07-051-2/+47
* Re-name "error()" function to "sparse_error()"Linus Torvalds2005-11-161-4/+4
* [PATCH] replaced warnings with errors.Mitesh Shah2005-09-221-4/+4
* Warn about undefined preprocessor symbols at expansion time, not parse timeLinus Torvalds2005-09-091-0/+9
* Fix assignment and conditional expression parsing with no left side.Linus Torvalds2005-06-191-2/+2
* Split out the blob allocator from lib.c into allocate.c.Linus Torvalds2005-04-071-0/+2
* Update copyright notices a bit.Linus Torvalds2005-04-071-1/+1
* Add __sizeof_ptr__ that looks at a pointer expression andLinus Torvalds2005-04-071-31/+47
* Handle __func__, __FUNCTION__ and __PRETTY_FUNCTION__ the sameLinus Torvalds2005-04-071-0/+59
* Add system-specific compatibility functions to makeLinus Torvalds2005-04-071-2/+1
* Many files:welinder@darter.rentec.com2005-04-071-10/+10
* Keep track of computed target label lists per-function.Linus Torvalds2005-04-071-1/+6
* Make sizeof understand the C99 "sizeof typed initializer" syntax.Linus Torvalds2005-04-071-1/+12
* [PATCH] FP handlingAlexander Viro2005-04-071-15/+25
* C99 says strings should be up to 4095 bytes.Linus Torvalds2005-04-071-5/+6
* Don't allow string concatenation to overflow MAX_STRING.Linus Torvalds2005-04-071-0/+9
* [PATCH] teach sparse about __alignof__Stephen Hemminger2005-04-071-11/+22
* [PATCH] Update get_number_value()Alexander Viro2005-04-071-80/+94
* If int/long are the same size, an int that overflows intoLinus Torvalds2005-04-071-3/+2
* Macroize lr_binop_expression() helper function.Linus Torvalds2005-04-071-49/+85
* Make sure we don't silently accept an empty expressionLinus Torvalds2005-04-071-2/+12
* Allow underscores in integer constants for readability.Linus Torvalds2005-04-071-2/+8
* Remove TOKEN_FP vs TOKEN_INTEGER distinction, and make numbers beLinus Torvalds2005-04-071-24/+30
* Don't get confused about "void *" nodes.Linus Torvalds2005-04-071-1/+1
* "a->b" is just shorthand for "(*a).b".Linus Torvalds2005-04-071-2/+9
* Make "value is so big" warning print the constant.Linus Torvalds2005-04-071-3/+5
* Now that BITS_IN_XXXX aren't defined contstants any more,Linus Torvalds2005-04-071-6/+6
* Clean up type expression syntax.Linus Torvalds2005-04-071-2/+9
* Support C types as first-class citizens, allowing typeLinus Torvalds2005-04-071-8/+8
* Warn about users trying to use type names in expressions.Linus Torvalds2005-04-071-1/+15
* [PATCH] Make sparse understand complex initializers inside expressionsDave Olien2005-04-071-6/+17
* Update copyright notices to reflect the fact that TransmetaLinus Torvalds2005-04-071-0/+1
* Make the tokenizer recognize FP tokens, even if we don'tLinus Torvalds2005-04-071-1/+5
* Parse and evaluate gcc computed goto extensions: label addressingLinus Torvalds2005-04-071-0/+10
* Don't warn about signedness for hax/octal constants. They are commonlyLinus Torvalds2005-04-071-4/+7
* Start updating the copyright license comments to the OSL,Linus Torvalds2005-04-071-1/+3
* Peter points out that the type masking shifts can overflowLinus Torvalds2005-04-071-2/+2
* Evaluate logical expressions, and short-circuit it.Linus Torvalds2005-04-071-2/+2
* Change the copyright to Transmeta Corp, that's likely to beLinus Torvalds2005-04-071-1/+1
* Oops. Initializer casts didn't actually save the result.Linus Torvalds2005-04-071-1/+1
* Remove last user of "struct token" from "struct expression".Linus Torvalds2005-04-071-4/+95
* Evaluate assignments:Linus Torvalds2005-04-071-3/+4
* Parse initializers properly. We parsed them before, but we didn'tLinus Torvalds2005-04-071-1/+1
* Start doing constant strings right: do proper concatenation of strings,Linus Torvalds2005-04-071-6/+35
* A structure member is just an identifier, not a random token.Linus Torvalds2005-04-071-1/+1
* Introduce a "struct position", and have the different types referLinus Torvalds2005-04-071-26/+29
* Give comma expressions and comparison expressions different types,Linus Torvalds2005-04-071-13/+13
* Make a function call point an expression type of its own, andLinus Torvalds2005-04-071-3/+18
* Fix typename parsing (incorrect ctype usage), and correctLinus Torvalds2005-04-071-1/+3
* Start doing type evaluation for binops - integer promotion rulesLinus Torvalds2005-04-071-6/+11