| Age | Commit message (Expand) | Author | Files | Lines |
| 2005-04-07 | Split out the blob allocator from lib.c into allocate.c. | Linus Torvalds | 1 | -0/+1 |
| 2005-04-07 | Be more graceful about missing types and malformed expressions. | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | When expanding a constant short conditional, make sure | Linus Torvalds | 1 | -0/+2 |
| 2005-04-07 | Update copyright notices a bit. | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Remove EXPR_BITFIELD entirely. | Linus Torvalds | 1 | -3/+0 |
| 2005-04-07 | Separate explicit and implied casts. | Linus Torvalds | 1 | -0/+1 |
| 2005-04-07 | Fix up dropped bit check | Linus Torvalds | 1 | -6/+11 |
| 2005-04-07 | Make the cast truncation warning a bit more readable. | Linus Torvalds | 1 | -1/+3 |
| 2005-04-07 | Make casts warn if they drop bits from constant values. | Linus Torvalds | 1 | -3/+10 |
| 2005-04-07 | Remove remnants of two-expression x ? : y handling.. | Linus Torvalds | 1 | -1/+0 |
| 2005-04-07 | Fix cost of a simplified int/fp binop expression. | Linus Torvalds | 1 | -2/+2 |
| 2005-04-07 | Implement __builtin_safe_p() to match __builtin_constant_p. | Linus Torvalds | 1 | -3/+19 |
| 2005-04-07 | Do some trivial statement simplification. | Linus Torvalds | 1 | -18/+52 |
| 2005-04-07 | Add an internal sparse "context" statement type. | Linus Torvalds | 1 | -0/+3 |
| 2005-04-07 | Add __sizeof_ptr__ that looks at a pointer expression and | Linus Torvalds | 1 | -0/+1 |
| 2005-04-07 | We actually _can_ have multiple initializers at offset zero. | Linus Torvalds | 1 | -2/+6 |
| 2005-04-07 | [PATCH] #if expression handling cleanups | Alexander Viro | 1 | -11/+0 |
| 2005-04-07 | Make sure sort does not degenerate. | welinder@anemone.rentec.com | 1 | -8/+8 |
| 2005-04-07 | Use the list sorter to sort the EXPR_INITIALIZER lists. | Linus Torvalds | 1 | -0/+32 |
| 2005-04-07 | Do the EXPR_POS simplification breadth first, not depth first. | Linus Torvalds | 1 | -4/+4 |
| 2005-04-07 | Simplify EXPR_INITIALIZER that is nested inside a simple EXPR_POS. | Linus Torvalds | 1 | -6/+32 |
| 2005-04-07 | Simplify nested EXPR_POS expressions. | Linus Torvalds | 1 | -1/+25 |
| 2005-04-07 | For functions that lack a type, print out error rather than SIGSEGV. | Linus Torvalds | 1 | -0/+4 |
| 2005-04-07 | Fix shift size check and make warning more readable. | Linus Torvalds | 1 | -9/+13 |
| 2005-04-07 | Fix up format string buglet found by the compiler. | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Many files: | welinder@darter.rentec.com | 1 | -12/+12 |
| 2005-04-07 | Make END_FOR_EACH_PTR[_REVERSE] take the ptr name as an argument. | Linus Torvalds | 1 | -4/+4 |
| 2005-04-07 | Split "side effects" from "might take an exception" costs. | Linus Torvalds | 1 | -15/+16 |
| 2005-04-07 | Cset exclude: welinder@troll.com|ChangeSet|20040812190944|57264 | welinder@troll.com | 1 | -3/+1 |
| 2005-04-07 | Merge | welinder@troll.com | 1 | -0/+3 |
| 2005-04-07 | [PATCH] handling of non-lvalue compound objects | Alexander Viro | 1 | -0/+3 |
| 2005-04-07 | expand.c: | welinder@troll.com | 1 | -1/+3 |
| 2005-04-07 | expand.c: | welinder@troll.com | 1 | -2/+11 |
| 2005-04-07 | [PATCH] simplify_float_binop | terra@gnome.org | 1 | -3/+5 |
| 2005-04-07 | Oops. Must expand conditional expression before checking it for constantness. | Linus Torvalds | 1 | -2/+3 |
| 2005-04-07 | EXPR_SAFELOGICAL is unnecessary. It ends up being the same as EXPR_BINOP. | Linus Torvalds | 1 | -2/+1 |
| 2005-04-07 | Make expression expansion calculate the "cost" of the | Linus Torvalds | 1 | -125/+177 |
| 2005-04-07 | Add "select" expression. | Linus Torvalds | 1 | -0/+1 |
| 2005-04-07 | simplify_int_binop: split signed and unsigned operations | Linus Torvalds | 1 | -15/+83 |
| 2005-04-07 | [PATCH] simplify_float_cmp | terra@gnome.org | 1 | -1/+3 |
| 2005-04-07 | Fix silly typo in new fp->integer constant conversion. | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | [PATCH] FP handling | Alexander Viro | 1 | -39/+159 |
| 2005-04-07 | [PATCH] boolean in constant expressions done right | Alexander Viro | 1 | -1/+1 |
| 2005-04-07 | [PATCH] comparison operations fix | Alexander Viro | 1 | -7/+31 |
| 2005-04-07 | Move the check for assignment to "const" to the evaluation phase. | Linus Torvalds | 1 | -6/+0 |
| 2005-04-07 | Warn about assignments to 'const' types. | Linus Torvalds | 1 | -0/+6 |
| 2005-04-07 | [PATCH] teach sparse about __alignof__ | Stephen Hemminger | 1 | -0/+1 |
| 2005-04-07 | Initialize C type system after parsing the command line arguments. | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Add a note about bogus warnings we can get. | Linus Torvalds | 1 | -0/+8 |
| 2005-04-07 | Make the "noderef" attribute work right. | Linus Torvalds | 1 | -3/+4 |
| 2005-04-07 | Support type equality testing for real. | Linus Torvalds | 1 | -1/+17 |
| 2005-04-07 | Support C types as first-class citizens, allowing type | Linus Torvalds | 1 | -0/+15 |
| 2005-04-07 | Remove now-obsolete temporary statement types. | Linus Torvalds | 1 | -7/+0 |
| 2005-04-07 | Add proper linearization of switch statements. | Linus Torvalds | 1 | -0/+2 |
| 2005-04-07 | Split "STMT_GOTO_BB" into "STMT_CONDTRUE" and "STMT_CONDFALSE". | Linus Torvalds | 1 | -0/+5 |
| 2005-04-07 | Allow variable-sized array size declarations. | Linus Torvalds | 1 | -0/+2 |
| 2005-04-07 | Warn about non-constant case statements. | Linus Torvalds | 1 | -2/+10 |
| 2005-04-07 | Disable premature dead code removal: a block that | Linus Torvalds | 1 | -0/+3 |
| 2005-04-07 | Update copyright notices to reflect the fact that Transmeta | Linus Torvalds | 1 | -0/+1 |
| 2005-04-07 | Start migrating the last straggling users of the "iterate()" | Linus Torvalds | 1 | -12/+10 |
| 2005-04-07 | Cast evaluation is special: we want to simplify the cast early | Linus Torvalds | 1 | -2/+2 |
| 2005-04-07 | Fix up function inlining: | Linus Torvalds | 1 | -3/+0 |
| 2005-04-07 | Split tree evaluation into two phases: the first phase | Linus Torvalds | 1 | -0/+609 |