| Commit message (Expand) | Author | Age | Files | Lines |
| * | [c++1z] P0012R1: Implement a few remaining pieces: downgrade diagnostic for | Richard Smith | 2016-10-22 | 1 | -11/+17 |
| * | DR583, DR1512: Implement a rewrite to C++'s 'composite pointer type' rules. | Richard Smith | 2016-10-21 | 1 | -32/+8 |
| * | Declare H and H new/delete. | Artem Belevich | 2016-10-21 | 1 | -22/+33 |
| * | Revert "DR583, DR1512: Implement a rewrite to C++'s 'composite pointer type' ... | Renato Golin | 2016-10-21 | 1 | -8/+32 |
| * | DR583, DR1512: Implement a rewrite to C++'s 'composite pointer type' rules. | Richard Smith | 2016-10-21 | 1 | -32/+8 |
| * | Re-commit r284753, reverted in r284778, with a fix for PR30749. | Richard Smith | 2016-10-20 | 1 | -26/+167 |
| * | Revert r284753 "[c++1z] Teach composite pointer type computation how to compu... | Hans Wennborg | 2016-10-20 | 1 | -164/+26 |
| * | [c++1z] Teach composite pointer type computation how to compute the composite | Richard Smith | 2016-10-20 | 1 | -26/+164 |
| * | Work around MSVC rejects-valid. Apparenty (some versions of) MSVC will check | Richard Smith | 2016-10-20 | 1 | -9/+8 |
| * | Refactor and simplify Sema::FindCompositePointerType. No functionality change... | Richard Smith | 2016-10-20 | 1 | -126/+123 |
| * | P0012R1: Make exception specifications be part of the type system. This | Richard Smith | 2016-10-16 | 1 | -1/+1 |
| * | [CUDA] Add Sema::CUDADiagBuilder and Sema::CUDADiagIf{Device,Host}Code(). | Justin Lebar | 2016-10-13 | 1 | -1/+2 |
| * | Aligned allocation versus CUDA: make deallocation function preference order | Richard Smith | 2016-10-11 | 1 | -26/+34 |
| * | Re-commit r283722, reverted in r283750, with a fix for a CUDA-specific use of | Richard Smith | 2016-10-10 | 1 | -306/+446 |
| * | Revert "P0035R4: Semantic analysis and code generation for C++17 overaligned ... | Daniel Jasper | 2016-10-10 | 1 | -446/+306 |
| * | P0035R4: Semantic analysis and code generation for C++17 overaligned | Richard Smith | 2016-10-10 | 1 | -306/+446 |
| * | PR25890: Fix incoherent error handling in PerformImplicitConversion and | Richard Smith | 2016-10-06 | 1 | -0/+4 |
| * | PR22924, PR22845, some of CWG1464: When checking the initializer for an array | Richard Smith | 2016-10-05 | 1 | -48/+42 |
| * | P0035R4: add predefined __STDCPP_DEFAULT_NEW_ALIGNMENT__ macro. By default, we | Richard Smith | 2016-09-30 | 1 | -2/+2 |
| * | Strip trailing whitespace (NFCI) | Simon Pilgrim | 2016-09-30 | 1 | -167/+167 |
| * | Fix int <= bool comparison warning on MSVC | Simon Pilgrim | 2016-09-30 | 1 | -2/+5 |
| * | P0035R4: add std::align_val_t overloads of operator new/delete in C++17 mode. | Richard Smith | 2016-09-29 | 1 | -46/+56 |
| * | [CUDA] Disallow exceptions in device code. | Justin Lebar | 2016-09-28 | 1 | -0/+4 |
| * | [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 |