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