| Commit message (Expand) | Author | Age | Files | Lines |
| * | Teach Diagnostic::setClient() to free the existing, owned | Douglas Gregor | 2011-01-31 | 1 | -0/+2 |
| * | Teach ASTUnit to save the specified target features, since | Douglas Gregor | 2011-01-27 | 1 | -1/+1 |
| * | Add libclang functions to determine the const/volatile/restrict | Douglas Gregor | 2011-01-27 | 4 | -0/+27 |
| * | Eliminate the use of getTypeForDecl from clang_getCursorType() and | Douglas Gregor | 2011-01-24 | 1 | -19/+20 |
| * | Add support for the --noexecstack option. Fixes PR8762. | Rafael Espindola | 2011-01-23 | 1 | -2/+6 |
| * | Teach libclang to generate USRs containing parameter packs and pack expansions. | Douglas Gregor | 2011-01-19 | 1 | -3/+18 |
| * | Teach libclang about SizeOfPackExpr. | Douglas Gregor | 2011-01-19 | 1 | -2/+36 |
| * | Change QualType::getTypePtr() to return a const pointer, then change a | John McCall | 2011-01-19 | 2 | -4/+4 |
| * | Don't silently drop warning flags passed in to | Douglas Gregor | 2011-01-19 | 1 | -1/+2 |
| * | Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and | Jeffrey Yasskin | 2011-01-18 | 2 | -7/+6 |
| * | Add missing <cctype> include, from Joerg Sonnenberger | Douglas Gregor | 2011-01-17 | 1 | -0/+1 |
| * | Introduce a new kind of TemplateName that captures a substituted | Douglas Gregor | 2011-01-15 | 1 | -0/+5 |
| * | Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, | Douglas Gregor | 2011-01-15 | 2 | -0/+4 |
| * | Revert r123160. There are linking dependency problems. | Zhongxing Xu | 2011-01-10 | 1 | -1/+2 |
| * | Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, | Alexis Hunt | 2011-01-08 | 1 | -8/+8 |
| * | Replace the representation of template template argument pack | Douglas Gregor | 2011-01-05 | 2 | -2/+5 |
| * | Implement the sizeof...(pack) expression to compute the length of a | Douglas Gregor | 2011-01-04 | 2 | -1/+3 |
| * | Implement support for pack expansions whose pattern is a non-type | Douglas Gregor | 2011-01-03 | 1 | -0/+1 |
| * | Expose Objective-C type encodings of declarations to libclang users. This al... | David Chisnall | 2010-12-30 | 3 | -0/+31 |
| * | The -fshort-wchar option causes wchar_t to become unsigned, in addition to being | Chris Lattner | 2010-12-25 | 3 | -4/+7 |
| * | Chris Lattner has strong opinions about directory | Ted Kremenek | 2010-12-23 | 2 | -3/+3 |
| * | Rename headers: 'clang/GR' 'clang/EntoSA' and | Ted Kremenek | 2010-12-23 | 2 | -3/+3 |
| * | [analyzer] Refactoring: Move checkers into lib/GR/Checkers and their own libr... | Argyrios Kyrtzidis | 2010-12-22 | 2 | -1/+2 |
| * | [analyzer] Refactoring: lib/Checker -> lib/GR and libclangChecker -> libclang... | Argyrios Kyrtzidis | 2010-12-22 | 2 | -2/+2 |
| * | Introduced raw_identifier token kind. | Abramo Bagnara | 2010-12-22 | 1 | -14/+5 |
| * | When determining which preprocessed entities to traverse in libclang, | Douglas Gregor | 2010-12-21 | 1 | -1/+14 |
| * | Replace all uses of PathV1::makeAbsolute with PathV2::fs::make_absolute. | Michael J. Spencer | 2010-12-21 | 1 | -12/+16 |
| * | Teach clang_getCursorSemanticParent() and | Douglas Gregor | 2010-12-21 | 1 | -3/+29 |
| * | Clean up the handling of template argument packs, especially in the | Douglas Gregor | 2010-12-20 | 1 | -4/+1 |
| * | Introduce a new type, PackExpansionType, to capture types that are | Douglas Gregor | 2010-12-20 | 1 | -0/+5 |
| * | Replace all uses of PathV1::get{Basename,Dirname,Suffix} with their PathV2 eq... | Michael J. Spencer | 2010-12-18 | 1 | -2/+2 |
| * | Replace all uses of PathV1::getLast with PathV2::filename. | Michael J. Spencer | 2010-12-18 | 2 | -5/+4 |
| * | MemoryBuffer API update. | Michael J. Spencer | 2010-12-16 | 2 | -7/+5 |
| * | Update for LLVM API change. | Daniel Dunbar | 2010-12-16 | 1 | -2/+5 |
| * | Added missing IgnoreParens(). | Abramo Bagnara | 2010-12-14 | 1 | -1/+1 |
| * | Eliminate the branching in QualType::getTypePtr() by providing a | Douglas Gregor | 2010-12-10 | 1 | -6/+6 |
| * | Added ParenType type node. | Abramo Bagnara | 2010-12-10 | 1 | -0/+5 |
| * | Fixed version of 121435. | Rafael Espindola | 2010-12-10 | 1 | -3/+14 |
| * | In clang_getCursor(), don't override a preprocessing cursor within | Douglas Gregor | 2010-12-10 | 1 | -0/+6 |
| * | Revert my previous patch to make the valgrind bots happy. | Rafael Espindola | 2010-12-10 | 1 | -14/+3 |
| * | Extend libclang debugging output for clang_getCursor() to show the definition... | Douglas Gregor | 2010-12-10 | 1 | -0/+18 |
| * | Update clang for the API changes in the cfi patch. | Rafael Espindola | 2010-12-09 | 1 | -3/+14 |
| * | Use error_code instead of std::string* for MemoryBuffer. | Michael J. Spencer | 2010-12-09 | 2 | -2/+7 |
| * | Fix build. | Anders Carlsson | 2010-12-09 | 1 | -1/+1 |
| * | Remove extra namespace specifier. | Ted Kremenek | 2010-12-09 | 1 | -1/+1 |
| * | DenseMapInfo is a 'struct', not a 'class'. | Ted Kremenek | 2010-12-09 | 1 | -1/+1 |
| * | Add new libclang hooks for CXCursorSet, a | Ted Kremenek | 2010-12-08 | 3 | -2/+76 |
| * | Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi... | Francois Pichet | 2010-12-08 | 2 | -6/+0 |
| * | Fix bug where annotate tokens was not working for BinaryTypeTraitExpr. | Francois Pichet | 2010-12-08 | 1 | -1/+1 |
| * | Type traits intrinsic implementation: __is_base_of(T, U) | Francois Pichet | 2010-12-07 | 2 | -0/+8 |