| Age | Commit message (Expand) | Author | Files | Lines |
| 2005-04-07 | Evaluate logical expressions, and short-circuit it. | Linus Torvalds | 1 | -1/+2 |
| 2005-04-07 | evaluate_initializer() is now static to within evaluate.c | Linus Torvalds | 1 | -1/+0 |
| 2005-04-07 | Change the copyright to Transmeta Corp, that's likely to be | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Change the evaluate functions to return the type of the result | Linus Torvalds | 1 | -4/+4 |
| 2005-04-07 | Evaluate more expression types: conditional expressions, statement | Linus Torvalds | 1 | -0/+5 |
| 2005-04-07 | Remove last user of "struct token" from "struct expression". | Linus Torvalds | 1 | -5/+1 |
| 2005-04-07 | Evaluate initializers separately. We'll need this to handle | Linus Torvalds | 1 | -0/+1 |
| 2005-04-07 | Parse initializers properly. We parsed them before, but we didn't | Linus Torvalds | 1 | -1/+12 |
| 2005-04-07 | Start doing constant strings right: do proper concatenation of strings, | Linus Torvalds | 1 | -0/+4 |
| 2005-04-07 | A structure member is just an identifier, not a random token. | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Introduce a "struct position", and have the different types refer | Linus Torvalds | 1 | -5/+11 |
| 2005-04-07 | Zero out the high bits when casting constants to a smaller type, | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Handle 'enum' as 'int' for integer promotion. | Linus Torvalds | 1 | -1/+2 |
| 2005-04-07 | Evaluate bitfields into bitfield expressions. | Linus Torvalds | 1 | -0/+6 |
| 2005-04-07 | Give comma expressions and comparison expressions different types, | Linus Torvalds | 1 | -1/+3 |
| 2005-04-07 | Make a function call point an expression type of its own, and | Linus Torvalds | 1 | -4/+20 |
| 2005-04-07 | Start doing type evaluation for binops - integer promotion rules | Linus Torvalds | 1 | -1/+2 |
| 2005-04-07 | Start "evaluating" expression trees. That is, evaluate the types of | Linus Torvalds | 1 | -0/+5 |
| 2005-04-07 | Move expression data structures to "expression.h", they got | Linus Torvalds | 1 | -0/+41 |
| 2005-04-07 | Parse enum declarations, and associate the enum's with the | Linus Torvalds | 1 | -0/+3 |
| 2005-04-07 | Split up the expression parsing in "parse.c" into a file of | Linus Torvalds | 1 | -0/+44 |