Age | Commit message (Expand) | Author |
2008-04-11 | Minor changes per Chris L's review. | Fariborz Jahanian |
2008-04-10 | Patch for: | Fariborz Jahanian |
2008-04-10 | reduce the amount of 'C++ magic' this code depends on :) | Chris Lattner |
2008-04-10 | refactor Parser::ParseStructDeclaration to return a vector of uninterpreted | Chris Lattner |
2008-04-10 | Fix typo. | Eric Christopher |
2008-04-08 | Add support for C++ default arguments, and rework Parse-Sema | Chris Lattner |
2008-04-07 | add an example. | Chris Lattner |
2008-04-06 | split parsing of identifier lists in function declarators out into | Chris Lattner |
2008-04-06 | split code for handling grouping parens in declarators from code that | Chris Lattner |
2008-04-06 | Use token lookahead to simplify some code that is rarely executed. | Chris Lattner |
2008-04-05 | Fix handling of implicit int, resolving PR2012 and reverting (and | Chris Lattner |
2008-04-02 | Two changes to Sema::LookupDecl() interface. | Steve Naroff |
2008-03-13 | improve DeclStmt to be able to store SourceRange info correctly. | Chris Lattner |
2008-03-10 | implement simple support for arbitrary token lookahead. Change the | Chris Lattner |
2008-03-07 | Add fastcall/stdcall attribute support | Nate Begeman |
2008-03-03 | Add a bunch of attributes, patch by Nuno Lopes. | Chris Lattner |
2008-02-29 | Add support for attribute(deprecated), patch by Nuno Lopes! | Chris Lattner |
2008-02-27 | Added support for attribute "noreturn." | Ted Kremenek |
2008-02-26 | add parsing, ast building and pretty printing support for C++ throw expressions. | Chris Lattner |
2008-02-25 | convert tabs to spaces, patch by Mike Stump! | Chris Lattner |
2008-02-24 | Two more Windows-related fixes: | Ted Kremenek |
2008-02-21 | Handle __attribute__((annotate("string"))) | Nate Begeman |
2008-02-21 | Collect and build and process type attributes on pointers. For | Chris Lattner |
2008-02-21 | move type attribute processing into the creatively named ProcessTypeAttribute... | Chris Lattner |
2008-02-20 | rename some methods. | Chris Lattner |
2008-02-20 | add a method to AttributeList that converts an identifier to an enum. | Chris Lattner |
2008-02-20 | add some code that will be used to remove processed attrs from | Chris Lattner |
2008-02-14 | Remove DeclSpec::Invalid, a recently added bool that allowed the parser to de... | Steve Naroff |
2008-02-12 | Allow the parser to detect invalid DeclSpec's. This fixes http://llvm.org/bug... | Steve Naroff |
2008-02-11 | Several cleanups surrounding Parser::ParseAsmStatement() and Parser::FuzzyPar... | Steve Naroff |
2008-02-11 | Move Microsoft __declspec hack from the parser to the preprocessor. Since we ... | Steve Naroff |
2008-02-09 | Behave correctly if a constraint expression is invalid. | Anders Carlsson |
2008-02-08 | Put back the top-level asm code; all tests pass now. | Anders Carlsson |
2008-02-08 | Back out 46855 for now, it causes test failures on Darwin. | Anders Carlsson |
2008-02-07 | Handle top-level asm declarations. | Anders Carlsson |
2008-02-07 | Implement -fms-extensions. This allows us to fuzzy parse non-standard MS cons... | Steve Naroff |
2008-02-05 | Handle simple asm statements correctly. | Anders Carlsson |
2008-02-05 | Fix Parser::ParseObjCTryStmt() to allow for trailing @-keyword statements/exp... | Steve Naroff |
2008-01-29 | AST for @synchronized. | Fariborz Jahanian |
2008-01-29 | Bunch of type defs, etc. for @synchronized. | Fariborz Jahanian |
2008-01-25 | Add more support for Apple's "private extern" extension... | Steve Naroff |
2008-01-25 | Factor a complex predicate out to a helper method. | Chris Lattner |
2008-01-25 | split the second half of ParseObjCMessageExpression into a new | Chris Lattner |
2008-01-17 | Implement basic overload support via a new builtin, __builtin_overload. | Nate Begeman |
2008-01-17 | Declarator::clear(): Null out variable after it's been deleted. | Steve Naroff |
2008-01-12 | Add first pieces of support for parsing and representing | Chris Lattner |
2008-01-07 | Substituted all instances of the string "Objc" for "ObjC". This fixes | Ted Kremenek |
2008-01-04 | Minor changes as suggested by Chris L. | Fariborz Jahanian |
2008-01-03 | Patch to parse/build AST ObjC2's foreach statement. | Fariborz Jahanian |
2008-01-02 | New declarations/defs for Objc2's foreach-statement. This is work in progress. | Fariborz Jahanian |