| Commit message (Expand) | Author | Age | Files | Lines |
| * | Place implictly declared functions at block scope | Momchil Velikov | 2017-08-10 | 1 | -7/+10 |
| * | Added LLVM_FALLTHROUGH to address warning: this statement may fall through. NFC. | Galina Kistanova | 2017-06-01 | 1 | -0/+1 |
| * | Fix the location of "missing ';'" suggestions after annotation tokens. | Richard Smith | 2017-05-18 | 1 | -2/+2 |
| * | Add #pragma clang attribute | Alex Lorenz | 2017-04-18 | 1 | -0/+4 |
| * | Revert r300539 - Add #pragma clang attribute | Alex Lorenz | 2017-04-18 | 1 | -4/+0 |
| * | Add #pragma clang attribute | Alex Lorenz | 2017-04-18 | 1 | -0/+4 |
| * | Add #pragma clang fp | Adam Nemet | 2017-04-04 | 1 | -0/+9 |
| * | [NFC, Scoped Enum] Convert Sema::ExpressionEvaluationContext into a scoped Enum | Faisal Vali | 2017-04-01 | 1 | -2/+4 |
| * | Publish RAIIObjectsForParser.h for external usage. | Vassil Vassilev | 2017-03-23 | 1 | -1/+1 |
| * | Fix misspelled enum | Jonathan Roelofs | 2017-03-14 | 1 | -3/+3 |
| * | [coroutines] Add DependentCoawaitExpr and fix re-building CoroutineBodyStmt. | Eric Fiselier | 2017-03-06 | 1 | -1/+1 |
| * | [CodeCompletion] Add a block property setter completion result | Alex Lorenz | 2016-10-18 | 1 | -0/+2 |
| * | [Parse] Let declarations follow labels in -fms-extensions mode | David Majnemer | 2016-08-01 | 1 | -1/+2 |
| * | [NFC] Header cleanup | Mehdi Amini | 2016-07-18 | 1 | -4/+1 |
| * | P0305R1: Parsing support for init-statements in 'if' and 'switch' statements. | Richard Smith | 2016-06-29 | 1 | -10/+18 |
| * | Implement p0292r2 (constexpr if), a likely C++1z feature. | Richard Smith | 2016-06-23 | 1 | -4/+28 |
| * | Re-commit r273548, reverted in r273589, with a fix to not produce | Richard Smith | 2016-06-23 | 1 | -46/+34 |
| * | Revert r273548, "Rearrange condition handling so that semantic checks on a co... | Peter Collingbourne | 2016-06-23 | 1 | -34/+46 |
| * | Rearrange condition handling so that semantic checks on a condition variable | Richard Smith | 2016-06-23 | 1 | -46/+34 |
| * | Fix a few issues while skipping function bodies | Olivier Goffart | 2016-06-16 | 1 | -21/+25 |
| * | Recommit "[MS] Improved implementation of stack pragmas (vtordisp, *_seg)" | Denis Zobnin | 2016-04-29 | 1 | -2/+4 |
| * | Revert "[MS] Improved implementation of MS stack pragmas (vtordisp, *_seg)" | Denis Zobnin | 2016-04-28 | 1 | -4/+2 |
| * | [MS] Improved implementation of MS stack pragmas (vtordisp, *_seg) | Denis Zobnin | 2016-04-28 | 1 | -2/+4 |
| * | [OpenCL] Generate metadata for opencl_unroll_hint attribute | Anastasia Stulova | 2016-02-19 | 1 | -0/+18 |
| * | PR23057: Fix assertion `Val && "isa<> used on a null pointer"' on invalid for... | Denis Zobnin | 2016-02-02 | 1 | -1/+3 |
| * | OpaquePtr: Use nullptr construction for DeclGroupPtrTy OpaquePtr typedef | David Blaikie | 2016-01-15 | 1 | -1/+1 |
| * | [OPENMP] Fix for declarative/standalone directives use. | Alexey Bataev | 2016-01-13 | 1 | -17/+28 |
| * | Improve AST dumping: | Richard Smith | 2016-01-12 | 1 | -0/+7 |
| * | [MS] Fix for bug 25013 - #pragma vtordisp is unknown inside functions, by Den... | Alexey Bataev | 2015-11-20 | 1 | -0/+18 |
| * | [modules] When a #include is mapped to a module import and appears somewhere | Richard Smith | 2015-11-17 | 1 | -2/+2 |
| * | [coroutines] Creation of promise object, lookup of operator co_await, building | Richard Smith | 2015-10-27 | 1 | -7/+4 |
| * | [coroutines] Initial stub Sema functionality for handling coroutine await / y... | Richard Smith | 2015-10-22 | 1 | -3/+4 |
| * | [coroutines] Add parsing support for co_await expression, co_yield expression, | Richard Smith | 2015-10-22 | 1 | -3/+29 |
| * | [Modules] More descriptive diagnostics for misplaced import directive | Serge Pavlov | 2015-09-19 | 1 | -1/+2 |
| * | Revert r240270 ("Fixed/added namespace ending comments using clang-tidy"). | Alexander Kornienko | 2015-06-22 | 1 | -1/+1 |
| * | Fixed/added namespace ending comments using clang-tidy. NFC | Alexander Kornienko | 2015-06-22 | 1 | -1/+1 |
| * | [clang] Refactoring of conditions so they use isOneOf() instead of multiple i... | Daniel Marjamaki | 2015-06-18 | 1 | -10/+7 |
| * | [OPENMP] Allow to use global variables as lcv in loop-based directives. | Alexey Bataev | 2015-04-30 | 1 | -0/+6 |
| * | Correct typos in SEH filter expressions | Reid Kleckner | 2015-04-02 | 1 | -1/+1 |
| * | MS ABI: Implement the MSVC 2015 scheme for scope disambiguation | David Majnemer | 2015-03-19 | 1 | -2/+2 |
| * | Fix a theoretical bug when ParseCompoundStatement() returns StmtError. | Nico Weber | 2015-03-09 | 1 | -1/+3 |
| * | Warn when jumping out of a __finally block via continue, break, return, __leave. | Nico Weber | 2015-03-09 | 1 | -2/+5 |
| * | Don't crash on missing '{' after __except or __finally, PR22687. | Nico Weber | 2015-02-25 | 1 | -2/+8 |
| * | Fold ParseSEHTryBlockCommon() into its only caller. No behavior change. | Nico Weber | 2015-02-25 | 1 | -7/+4 |
| * | Initial support for Win64 SEH IR emission | Reid Kleckner | 2015-01-22 | 1 | -2/+9 |
| * | Fix indentation. No behavior change. | Nico Weber | 2015-01-04 | 1 | -1/+1 |
| * | Removing an outdated FIXME; try block attributes are parsed with the rest of ... | Aaron Ballman | 2014-12-20 | 1 | -1/+0 |
| * | [c++1z] Remove terse range-based for loops; they've been removed from | Richard Smith | 2014-11-27 | 1 | -3/+1 |
| * | Wire up delayed typo correction to DiagnoseEmptyLookup and set up | Kaelyn Takata | 2014-11-20 | 1 | -1/+6 |
| * | Pass around CorrectionCandidateCallbacks as unique_ptrs so | Kaelyn Takata | 2014-10-27 | 1 | -3/+3 |