| Commit message (Expand) | Author | Age | Files | Lines |
| * | Added a comment, minor refactoring of foreach parsing code per Chris's sugges... | Fariborz Jahanian | 2008-01-04 | 1 | -0/+3 |
| * | Minor changes as suggested by Chris L. | Fariborz Jahanian | 2008-01-04 | 1 | -1/+1 |
| * | Patch to parse/build AST ObjC2's foreach statement. | Fariborz Jahanian | 2008-01-03 | 1 | -1/+3 |
| * | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
| * | Add __private_extern__ keyword and recognize it. Added a FIXME to indicate th... | Steve Naroff | 2007-12-18 | 1 | -0/+5 |
| * | move function to a more logical location, add its grammar productions. | Chris Lattner | 2007-12-12 | 1 | -34/+0 |
| * | simplify some code. | Chris Lattner | 2007-12-12 | 1 | -43/+25 |
| * | Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now | Ted Kremenek | 2007-12-11 | 1 | -2/+2 |
| * | Handle "bool" in all places that touch _Bool. | Chris Lattner | 2007-11-15 | 1 | -0/+2 |
| * | Give AST-walk passes a way to access DeclSpec attributes on functions and | Nate Begeman | 2007-11-13 | 1 | -1/+5 |
| * | More infrastructure to recognize objective-c's type qualifiers (in,inout, etc.) | Fariborz Jahanian | 2007-10-31 | 1 | -0/+52 |
| * | More support for rewriting ObjC intefaces. Still some edge cases to handle... | Steve Naroff | 2007-10-30 | 1 | -1/+2 |
| * | This commit contains lot's of small tweaks to how we pass around and store So... | Steve Naroff | 2007-10-29 | 1 | -2/+3 |
| * | The callers of ParseStructDeclaration are not expecting it to | Chris Lattner | 2007-10-29 | 1 | -6/+6 |
| * | Patch to create protocol conforming class types. | Fariborz Jahanian | 2007-10-11 | 1 | -11/+13 |
| * | Remove Scope argument from ObjC actions that either don't need it or can now ... | Steve Naroff | 2007-10-10 | 1 | -2/+1 |
| * | switch some more of the parser over to using Token::is and isNot | Chris Lattner | 2007-10-09 | 1 | -77/+75 |
| * | This is the first patch toward supporting protocol conforming | Fariborz Jahanian | 2007-10-05 | 1 | -0/+4 |
| * | Removed use of hash table for class decls and do a name look up directly. | Fariborz Jahanian | 2007-09-29 | 1 | -1/+2 |
| * | Start converting Action methods from Parse-prefix to ActOn-prefix. | Steve Naroff | 2007-09-15 | 1 | -8/+8 |
| * | Rename Action::ParseRecordBody() to ProcessFieldDecls(), and add a visibility... | Steve Naroff | 2007-09-14 | 1 | -1/+1 |
| * | Fix the following bug submitted by Ted Kremenek: | Steve Naroff | 2007-09-12 | 1 | -6/+6 |
| * | Start implementing Actions interface for ObjC classes, instance variables, an... | Steve Naroff | 2007-09-05 | 1 | -2/+4 |
| * | Tweak declaration... | Steve Naroff | 2007-08-28 | 1 | -1/+1 |
| * | Implement more thoughful error recovery when dealing with bogus declarator ty... | Steve Naroff | 2007-08-28 | 1 | -3/+2 |
| * | C++ allows empty enum list. | Chris Lattner | 2007-08-27 | 1 | -1/+2 |
| * | Break the assumption that any sort of scope (e.g. a loop scope) can | Chris Lattner | 2007-08-26 | 1 | -1/+2 |
| * | refactor enough of the top-level parsing logic to parse and | Chris Lattner | 2007-08-25 | 1 | -5/+22 |
| * | With this commit, we now successfully parse "Cocoa.h"! | Steve Naroff | 2007-08-22 | 1 | -3/+10 |
| * | Tweak error recovery for missing semicolon after decl. For this: | Chris Lattner | 2007-08-21 | 1 | -1/+1 |
| * | Added Parser::ParseStructDeclaration() as a result of refactoring Parser::Par... | Steve Naroff | 2007-08-20 | 1 | -73/+79 |
| * | minor cleanups | Chris Lattner | 2007-08-09 | 1 | -6/+4 |
| * | __attribute__ starts a declspec. | Chris Lattner | 2007-08-09 | 1 | -1/+3 |
| * | Tidy up Parser::ParseTypeofSpecifier()...implement FIXME and minor restructure. | Steve Naroff | 2007-08-02 | 1 | -18/+20 |
| * | Tighten up Parser::ParseTypeofSpecifier(). | Steve Naroff | 2007-07-31 | 1 | -17/+23 |
| * | Add parsing and AST support for GNU "typeof". | Steve Naroff | 2007-07-31 | 1 | -0/+48 |
| * | Fix a couple of bugs, add some new cool stuff. | Chris Lattner | 2007-07-25 | 1 | -2/+5 |
| * | At one point there were going to be lexer and parser tokens. | Chris Lattner | 2007-07-20 | 1 | -1/+1 |
| * | Finally bite the bullet and make the major change: split the clang namespace | Chris Lattner | 2007-06-15 | 1 | -7/+6 |
| * | Implement capturing of enum values and chaining of enums together. | Chris Lattner | 2007-06-11 | 1 | -4/+8 |
| * | Bug #: | Steve Naroff | 2007-06-09 | 1 | -7/+7 |
| * | accept __extension__, update todo list. | Chris Lattner | 2007-06-09 | 1 | -3/+8 |
| * | Accept horrible code like this: | Chris Lattner | 2007-06-09 | 1 | -0/+3 |
| * | Add support for a little extension. ISO C does not allow extra ;'s in structs, | Chris Lattner | 2007-06-09 | 1 | -0/+6 |
| * | Bug #: | Steve Naroff | 2007-06-09 | 1 | -34/+29 |
| * | Finally break down and chain together decls that are defined with common decl... | Chris Lattner | 2007-06-09 | 1 | -8/+8 |
| * | Bug #: | Steve Naroff | 2007-06-06 | 1 | -3/+6 |
| * | Submitted by: Bill Wendling | Bill Wendling | 2007-06-02 | 1 | -7/+24 |
| * | Bug #: | Steve Naroff | 2007-06-01 | 1 | -1/+1 |
| * | Bug #: | Steve Naroff | 2007-06-01 | 1 | -20/+145 |