| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add support for parsing and pretty printing const_cast, dynamic_cast, | Chris Lattner | 2006-12-04 | 1 | -2/+6 |
* | Implement a TODO: properly invoke actions for the * in things like: | Chris Lattner | 2006-11-21 | 1 | -1/+4 |
* | fix a variable shadowing issue that caused us to misparse: | Chris Lattner | 2006-11-21 | 1 | -19/+19 |
* | Add support for C90 implicitly defined functions, e.g.: | Chris Lattner | 2006-11-20 | 1 | -8/+16 |
* | parse identifier expressions properly. This allows us diagnose this: | Chris Lattner | 2006-11-20 | 1 | -4/+9 |
* | update comment | Chris Lattner | 2006-11-09 | 1 | -4/+2 |
* | Change courses on how we do semantic analysis. Semantic analysis | Chris Lattner | 2006-11-09 | 1 | -202/+1 |
* | split ParseStringExpr into semantic/minimal actions | Chris Lattner | 2006-11-08 | 1 | -3/+9 |
* | rename a bunch of files for better consistency | Chris Lattner | 2006-11-05 | 1 | -1/+1 |
* | implement some todo's: invoke the actions module for identifiers leading | Chris Lattner | 2006-11-04 | 1 | -4/+6 |
* | replace some ugly alloca/malloc code with a couple of SmallString's. | Chris Lattner | 2006-11-03 | 1 | -24/+11 |
* | Remove GNU C++ min/max operator extension support, they have been removed | Chris Lattner | 2006-10-27 | 1 | -8/+5 |
* | Finish removing LexerToken from actions interface | Chris Lattner | 2006-10-25 | 1 | -8/+14 |
* | Start removing LexerToken from the actions interface. | Chris Lattner | 2006-10-25 | 1 | -15/+15 |
* | accept the __extension__ prefix expr | Chris Lattner | 2006-10-20 | 1 | -1/+2 |
* | Make ConsumeFoo methods return the location of the consumed token. | Chris Lattner | 2006-10-16 | 1 | -20/+11 |
* | Make ConsumeToken return the loc of the consumed token to simplify clients | Chris Lattner | 2006-10-16 | 1 | -8/+5 |
* | create an ast node for &&label | Chris Lattner | 2006-10-15 | 1 | -5/+8 |
* | Write up TargetInfo so that use of wchar_t strings results in a warning if | Chris Lattner | 2006-10-14 | 1 | -4/+12 |
* | Parse ?:'s right | Chris Lattner | 2006-10-06 | 1 | -2/+2 |
* | Initial support for semantic analysis and AST building for StringExpr nodes. | Chris Lattner | 2006-10-06 | 1 | -18/+223 |
* | Build AST's for sizeof/alignof with type operands. | Chris Lattner | 2006-08-24 | 1 | -4/+4 |
* | Build CastExpr AST nodes | Chris Lattner | 2006-08-24 | 1 | -14/+40 |
* | Build AST's for sizeof/alignof an expr. | Chris Lattner | 2006-08-24 | 1 | -8/+23 |
* | switch MemberExpr to holding a field decl instead of a raw identifier. | Chris Lattner | 2006-08-24 | 1 | -1/+0 |
* | Add initial support for simple-primary exprs, including DeclExprs. | Chris Lattner | 2006-08-24 | 1 | -2/+1 |
* | Add AST nodes for array, call, . and ->. | Chris Lattner | 2006-08-24 | 1 | -3/+5 |
* | Invoke actions for postfix exprs | Chris Lattner | 2006-08-24 | 1 | -9/+47 |
* | Add AST nodes and actions for paren exprs and simple unary ops. | Chris Lattner | 2006-08-23 | 1 | -3/+21 |
* | Add (basic) expression AST representation capabilities for int/fp/binops/cond... | Chris Lattner | 2006-08-23 | 1 | -4/+25 |
* | Make MatchRHSPunctuation smarter, allowing its clients to be simpler. | Chris Lattner | 2006-08-15 | 1 | -8/+6 |
* | Parse asm specifiers on init declarators. Add __builtin_va_list to the | Chris Lattner | 2006-08-15 | 1 | -7/+7 |
* | Implement initializer parsering. | Chris Lattner | 2006-08-13 | 1 | -21/+30 |
* | Implement parsing of enum-specifiers. | Chris Lattner | 2006-08-13 | 1 | -0/+8 |
* | Use ExpectAndConsume more | Chris Lattner | 2006-08-12 | 1 | -8/+4 |
* | Add a new ExpectAndConsume method to make parsing easier, and add a new | Chris Lattner | 2006-08-12 | 1 | -31/+9 |
* | Parse the GNU builtin expressions. This implements Parser/expressions.c:test... | Chris Lattner | 2006-08-12 | 1 | -8/+139 |
* | Implement parsing of array declarators like: | Chris Lattner | 2006-08-12 | 1 | -1/+33 |
* | Two fixes: | Chris Lattner | 2006-08-12 | 1 | -6/+38 |
* | Split postfix-expression suffix handling out into ParsePostfixExpressionSuffix | Chris Lattner | 2006-08-12 | 1 | -24/+41 |
* | Implement ParseAssignmentExpression correctly | Chris Lattner | 2006-08-12 | 1 | -6/+9 |
* | remove bogus fixme | Chris Lattner | 2006-08-12 | 1 | -3/+1 |
* | Fix parsing of assignment expressions and handling of right-associative | Chris Lattner | 2006-08-12 | 1 | -5/+9 |
* | Simplify handling of the ternary operator even more. Now it just looks like | Chris Lattner | 2006-08-12 | 1 | -48/+30 |
* | Fix incorrect parsing of the ?: middle term, which is supposed to be | Chris Lattner | 2006-08-12 | 1 | -9/+13 |
* | Diagnose use of compound literals in C90 code | Chris Lattner | 2006-08-12 | 1 | -1/+3 |
* | cleanups, better comments. | Chris Lattner | 2006-08-12 | 1 | -6/+13 |
* | Implement a first cut at binary expression parsing using a simple operator | Chris Lattner | 2006-08-12 | 1 | -2/+236 |
* | Return information about whether expression parsing was successful | Chris Lattner | 2006-08-11 | 1 | -80/+78 |
* | Merge ParsePostfixExpression into ParseCastExpression. This allows us to | Chris Lattner | 2006-08-11 | 1 | -142/+135 |