aboutsummaryrefslogtreecommitdiff
path: root/Driver/PrintParserCallbacks.cpp
AgeCommit message (Expand)Author
2009-03-24Move <root>/Driver into <root>/tools/clang-cc.Daniel Dunbar
2009-03-20InitListDesignations hasn't been used (ever). Eliminate it, andDouglas Gregor
2009-03-15Handle static_asserts when instantiating structs.Anders Carlsson
2009-03-15Convert a bunch of actions to smart pointers, and also bring PrintParserCallb...Sebastian Redl
2009-03-04Implemented access check for ivars accessed insideFariborz Jahanian
2009-03-04Change Parser::ParseCaseStatement to use an iterative approach to parsingChris Lattner
2009-03-03Fix <rdar://problem/6640991> Exception handling executes wrong clause (Daniel...Steve Naroff
2009-02-28Minor name change (move the ObjC prefix to a more appropriate place).Steve Naroff
2009-02-11Fix <rdar://problem/6243503> [sema] @throw; accepted outside catch block.Steve Naroff
2009-02-06Semantic checking for class template declarations andDouglas Gregor
2009-02-05Put the invalid flag of OwningResult into the Action pointer.Sebastian Redl
2009-02-03Allow taking the address of data members, resulting in a member pointer.Sebastian Redl
2009-01-19Convert more expression actions to smart pointers.Sebastian Redl
2009-01-19Convert more expression actions to smart pointers.Sebastian Redl
2009-01-18Convert a few expression actions to smart pointers.Sebastian Redl
2009-01-18Convert ObjC statement actions to smart pointers.Sebastian Redl
2009-01-18Convert asm statement action to smart pointers.Sebastian Redl
2009-01-18Convert more statement actions to smart pointers.Sebastian Redl
2009-01-16Convert some more statement actions to smart pointers.Sebastian Redl
2009-01-11Convert some more actions to smart pointers.Sebastian Redl
2008-12-28Convert a two more statement actions to smart pointers.Sebastian Redl
2008-12-24Keep track of template arguments when we parse them. Right now, we don't actu...Douglas Gregor
2008-12-23Don't explicitly represent OverloadedFunctionDecls withinDouglas Gregor
2008-12-21Parser support for C++ try-catch.Sebastian Redl
2008-12-21Convert a few Stmt actions to smart pointers.Sebastian Redl
2008-12-17Fix PrintParserCallbacks for the new ActOnLinkageSpec actionsDouglas Gregor
2008-12-13Some utilities for using the smart pointers in Actions, especially Sema. Conv...Sebastian Redl
2008-12-11Unifies the name-lookup mechanisms used in various parts of the ASTDouglas Gregor
2008-12-06Add support for calls to dependent names within templates, e.g.,Douglas Gregor
2008-12-02Handle new by passing the Declaration to the Action, not a processed type.Sebastian Redl
2008-11-21Implementation of new and delete parsing and sema.Sebastian Redl
2008-11-19Support overloading of the subscript operator[], including support forDouglas Gregor
2008-11-19Added operator overloading for unary operators, post-increment, andDouglas Gregor
2008-11-11Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expr...Sebastian Redl
2008-11-08Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parse...Argyrios Kyrtzidis
2008-11-06Initial, rudimentary implementation of operator overloading for binaryDouglas Gregor
2008-10-31"One" line fix for -parse-noop failure, "id" and several other thingsDaniel Dunbar
2008-10-26pass designators into sema. This completes parser-level designatorChris Lattner
2008-10-03Pass postfix attributes to ActOnFields.Daniel Dunbar
2008-08-10rename PreDefinedExpr -> PredefinedExprChris Lattner
2008-08-05Move AsmLabel into Declarator instead of just a parameter toDaniel Dunbar
2008-08-05Add more Parser/Sema support for GCC asm-label extension.Daniel Dunbar
2008-08-01Add more output to clang -parse-print-callbacksDaniel Dunbar
2008-01-14Change uses of std::cerr/std::cout to llvm::Lcerr/llvm::cout, and removeTed Kremenek
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-10-31Implement ObjC built-in types in MinimalAction.Steve Naroff
2007-10-10Fix a latent bug in MinimalActions (created by a recent name change).Steve Naroff
2007-10-07move IdentifierTable.h from liblex to libbasic.Chris Lattner
2007-09-15Start converting Action methods from Parse-prefix to ActOn-prefix.Steve Naroff
2007-09-12Fix the following bug submitted by Ted Kremenek:Steve Naroff