Age | Commit message (Expand) | Author | Files | Lines |
2014-12-30 | Don't crash on an invalid trailing return type on a function before a '...' | Nico Weber | 1 | -5/+5 |
2014-11-19 | Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator... | David Blaikie | 1 | -1/+1 |
2014-11-08 | [c++1z] N4295: fold-expressions. | Richard Smith | 1 | -0/+105 |
2014-10-27 | Pass around CorrectionCandidateCallbacks as unique_ptrs so | Kaelyn Takata | 1 | -4/+4 |
2014-08-29 | Fix for PR20660, where unexpanded parameter pack in function parameter clause... | Larisse Voufo | 1 | -7/+31 |
2014-08-11 | Reject varargs '...' in function prototype if there are more parameters after | Richard Smith | 1 | -0/+14 |
2014-05-29 | Refactoring. Remove Owned method from Sema. | Nikola Smiljanic | 1 | -2/+2 |
2014-05-26 | [C++11] Use 'nullptr'. Sema edition. | Craig Topper | 1 | -5/+5 |
2014-04-23 | Initial implementation of -modules-earch-all option, for searching for symbol... | John Thompson | 1 | -1/+1 |
2014-03-12 | [C++11] Add 'override' keyword to virtual methods that override their base cl... | Craig Topper | 1 | -1/+1 |
2014-03-02 | [C++11] Replace llvm::tie with std::tie. | Benjamin Kramer | 1 | -5/+5 |
2014-01-07 | Sort all the #include lines with LLVM's utils/sort_includes.py which | Chandler Carruth | 1 | -1/+1 |
2013-12-18 | Remove OpenCL-specific type keywords and specifiers | Alp Toker | 1 | -8/+0 |
2013-08-17 | Refactor all diagnosing of TypoCorrections through a common function, in | Richard Smith | 1 | -8/+4 |
2013-06-20 | Fix one place I missed that was memcpy'ing TypeLocs in a way that messes | Eli Friedman | 1 | -0/+60 |
2013-06-07 | Re-commit r183466 with a fix to make the TypeLoc casting machinery work | Eli Friedman | 1 | -10/+7 |
2013-06-07 | Reverts r183466: "Perform dynamic alignment computations..." | Manuel Klimek | 1 | -7/+10 |
2013-06-07 | Perform dynamic alignment computations so that the data in TypeLocs is | Eli Friedman | 1 | -10/+7 |
2013-05-16 | First pass of semantic analysis for init-captures: check the initializer, build | Richard Smith | 1 | -2/+6 |
2013-04-26 | Implement C++1y decltype(auto). | Richard Smith | 1 | -0/+1 |
2013-02-21 | Use None rather than Optional<T>() where possible. | David Blaikie | 1 | -5/+4 |
2013-02-20 | Include llvm::Optional in clang/Basic/LLVM.h | David Blaikie | 1 | -21/+18 |
2013-02-18 | Replace TypeLoc llvm::cast support to be well-defined. | David Blaikie | 1 | -1/+2 |
2013-02-07 | Add OpenCL samplers as Clang builtin types and check sampler related restrict... | Guy Benyei | 1 | -0/+1 |
2013-02-02 | This patch makes "&Cls::purevfn" not an odr use. This isn't what the standard | Nick Lewycky | 1 | -1/+1 |
2013-01-20 | Implement OpenCL event_t as Clang builtin type, including event_t related Ope... | Guy Benyei | 1 | -0/+1 |
2012-12-18 | Re-commit r170428 changes with Linux style file endings. | Guy Benyei | 1 | -0/+6 |
2012-12-18 | Revert changes from r170428, as I accidentally changed the line endings of th... | Guy Benyei | 1 | -6/+0 |
2012-12-18 | Add OpenCL images as clang builtin types. | Guy Benyei | 1 | -0/+6 |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 1 | -3/+3 |
2012-08-31 | Improved MSVC __interface support by adding first class support for it, inste... | Joao Matos | 1 | -0/+1 |
2012-07-25 | PR12057: Allow variadic template pack expansions to cross lambda boundaries. | Richard Smith | 1 | -25/+64 |
2012-07-18 | PR13386: When matching up parameters between a function template declaration | Richard Smith | 1 | -7/+17 |
2012-04-04 | For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this is | Richard Smith | 1 | -0/+1 |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 1 | -2/+2 |
2012-03-10 | Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to | John McCall | 1 | -9/+0 |
2012-03-06 | Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, | Ted Kremenek | 1 | -0/+16 |
2012-03-01 | Fix the isReferenced bit on parameters in a couple of edge cases. PR12153. | Eli Friedman | 1 | -0/+2 |
2012-02-22 | ArrayRef-icize the function arguments. | Bill Wendling | 1 | -1/+1 |
2012-01-31 | Make the callback object to Sema::CorrectTypo mandatory. | Kaelyn Uhrain | 1 | -1/+1 |
2012-01-20 | More dead code removal (using -Wunreachable-code) | David Blaikie | 1 | -3/+0 |
2012-01-13 | Convert SemaTemplate*.cpp to pass a callback object to CorrectTypo. | Kaelyn Uhrain | 1 | -13/+24 |
2011-10-25 | Check for unexpanded parameter packs in the name that guards a | Douglas Gregor | 1 | -13/+34 |
2011-10-14 | Provide half floating point support as a storage only type. | Anton Korobeynikov | 1 | -0/+1 |
2011-10-06 | Support for C1x _Atomic specifier (see testcase). This is primarily being co... | Eli Friedman | 1 | -1/+2 |
2011-09-22 | ArrayRef-ifying the UnexpandedParameterPacks passed to Sema::CheckParameterPa... | David Blaikie | 1 | -9/+10 |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 1 | -16/+16 |
2011-06-28 | Add support for C++ namespace-aware typo correction, e.g., correcting | Douglas Gregor | 1 | -7/+9 |
2011-05-24 | Implement a new type node, UnaryTransformType, designed to represent a | Alexis Hunt | 1 | -1/+1 |
2011-05-19 | Implement __underlying_type for libc++. | Alexis Hunt | 1 | -1/+2 |