| Commit message (Expand) | Author | Age | Files | Lines |
| * | [Sema] Relax overloading restrictions in C. | George Burgess IV | 2016-09-02 | 1 | -0/+1 |
| * | Remove excessive padding from MismatchingNewDeleteDetector | Alexander Shaposhnikov | 2016-09-01 | 1 | -2/+2 |
| * | [Sema] Teach getCurrentThisType to reconize lambda in in-class initializer | Erik Pilkington | 2016-07-27 | 1 | -22/+16 |
| * | Fix typo-correction crash if a typo occurs within the operand of a | Richard Smith | 2016-06-30 | 1 | -1/+8 |
| * | P0136R1, DR1573, DR1645, DR1715, DR1736, DR1903, DR1941, DR1959, DR1991: | Richard Smith | 2016-06-28 | 1 | -3/+2 |
| * | Implement p0292r2 (constexpr if), a likely C++1z feature. | Richard Smith | 2016-06-23 | 1 | -3/+12 |
| * | Re-commit r273548, reverted in r273589, with a fix to not produce | Richard Smith | 2016-06-23 | 1 | -6/+18 |
| * | Revert r273548, "Rearrange condition handling so that semantic checks on a co... | Peter Collingbourne | 2016-06-23 | 1 | -18/+6 |
| * | Rearrange condition handling so that semantic checks on a condition variable | Richard Smith | 2016-06-23 | 1 | -6/+18 |
| * | Re-commit "[Temporary] Add an ExprWithCleanups for each C++ MaterializeTempor... | Tim Shen | 2016-06-21 | 1 | -7/+9 |
| * | Apply some suggestions from clang-tidy's performance-unnecessary-value-param. | Benjamin Kramer | 2016-06-15 | 1 | -1/+1 |
| * | Fix cv-qualification of '*this' captures and nasty bug PR27507 | Faisal Vali | 2016-06-11 | 1 | -24/+117 |
| * | Remove a few gendered pronouns. | Nico Weber | 2016-06-10 | 1 | -1/+1 |
| * | Revert "[Temporary] Add an ExprWithCleanups for each C++ MaterializeTemporary... | Tim Shen | 2016-06-09 | 1 | -9/+7 |
| * | [Temporary] Add an ExprWithCleanups for each C++ MaterializeTemporaryExpr. | Tim Shen | 2016-06-09 | 1 | -7/+9 |
| * | [MSVC] Support for __unaligned qualifier in functions | Andrey Bokhanko | 2016-05-26 | 1 | -0/+2 |
| * | Clang support for __is_assignable intrinsic | David Majnemer | 2016-05-23 | 1 | -0/+4 |
| * | Preserve the FoundDecl when performing overload resolution for constructors. | Richard Smith | 2016-05-11 | 1 | -3/+5 |
| * | Enable support for __float128 in Clang and enable it on pertinent platforms | Nemanja Ivanovic | 2016-05-09 | 1 | -0/+6 |
| * | [ObjC] Enter a new evaluation context before calling | Akira Hatanaka | 2016-05-04 | 1 | -0/+3 |
| * | Implement support for conditional between xvalues of reference-compatible | Richard Smith | 2016-04-25 | 1 | -9/+13 |
| * | Revert 266186 as it breaks anything that includes type_traits on some platforms | Nemanja Ivanovic | 2016-04-15 | 1 | -6/+0 |
| * | [MSVC] Fix check for wchar_t type in case of -fno-wchar | Dmitry Polukhin | 2016-04-14 | 1 | -1/+2 |
| * | Enable support for __float128 in Clang | Nemanja Ivanovic | 2016-04-13 | 1 | -0/+6 |
| * | Replace Sema-level implementation of -fassume-sane-operator-new with a | Richard Smith | 2016-04-07 | 1 | -12/+3 |
| * | [CUDA] Remove three obsolete CUDA cc1 flags. | Justin Lebar | 2016-03-29 | 1 | -2/+2 |
| * | Fix serialization/deserialization for __uuidof | David Majnemer | 2016-03-28 | 1 | -7/+9 |
| * | Improve the representation of CXXUuidofExpr | David Majnemer | 2016-03-27 | 1 | -16/+55 |
| * | [Cxx1z] Implement Lambda Capture of *this by Value as [=,*this] (P0018R3) | Faisal Vali | 2016-03-21 | 1 | -26/+116 |
| * | [SemaExprCXX] Avoid calling isInSystemHeader for invalid source locations | Pavel Labath | 2016-03-04 | 1 | -1/+2 |
| * | Sema: handle typo correction on ARC'ed ivar | Saleem Abdulrasool | 2016-02-07 | 1 | -0/+4 |
| * | Sema: handle typo correction with ARC'ed objc properties | Saleem Abdulrasool | 2016-02-07 | 1 | -0/+4 |
| * | OpaquePtr: Use nullptr construction for ParsedType OpaquePtr typedef | David Blaikie | 2016-01-15 | 1 | -6/+6 |
| * | Make -Wdelete-non-virtual-dtor warn on explicit `a->~A()` dtor calls too. | Nico Weber | 2016-01-15 | 1 | -24/+43 |
| * | [Bugfix] Fix ICE on constexpr vector splat. | George Burgess IV | 2016-01-13 | 1 | -12/+5 |
| * | Teach typo correction to properly handle mapping declarations to their | Richard Smith | 2015-12-29 | 1 | -4/+4 |
| * | Split RequireCompleteType into a function that actually requires that the type | Richard Smith | 2015-12-18 | 1 | -5/+6 |
| * | Wire a SourceLocation into IsDerivedFrom and move the RequireCompleteType call | Richard Smith | 2015-12-18 | 1 | -4/+4 |
| * | [Sema] Make nullness warnings appear in C++. | George Burgess IV | 2015-12-14 | 1 | -0/+7 |
| * | Allow pseudo-destructor calls on forward-declared Objective-C class pointers. | John McCall | 2015-12-14 | 1 | -1/+6 |
| * | [Sema] Implement several unary type traits more accurately | David Majnemer | 2015-11-16 | 1 | -19/+32 |
| * | Use Sema::getLocForEndOfToken instead of Preprocessor::getLocForEndOfToken. NFC | Craig Topper | 2015-11-15 | 1 | -1/+1 |
| * | [Sema] __is_constructible should return false for function types | David Majnemer | 2015-11-13 | 1 | -10/+11 |
| * | Sema: correct typo recovery with blocks | Saleem Abdulrasool | 2015-10-31 | 1 | -0/+2 |
| * | MismatchingNewDeleteDetector uses incorrect field, and finds no initializer | Ismail Pazarbasi | 2015-10-26 | 1 | -2/+4 |
| * | Fix warning caused by r249995 | George Burgess IV | 2015-10-11 | 1 | -0/+1 |
| * | [CUDA] Allow function overloads in CUDA based on host/device attributes. | Artem Belevich | 2015-09-22 | 1 | -0/+6 |
| * | [Sema] Reject value-initialization of function types | David Majnemer | 2015-09-14 | 1 | -0/+9 |
| * | [MS ABI] Make member pointers return true for isIncompleteType | David Majnemer | 2015-09-10 | 1 | -2/+0 |
| * | [MS ABI] Select a pointer to member representation more often | David Majnemer | 2015-09-10 | 1 | -0/+2 |