| Commit message (Expand) | Author | Age | Files | Lines |
* | [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 |
* | Remove unused StmtVector& parameters from declaration parsing functions. | Rafael Espindola | 2014-10-22 | 1 | -5/+3 |
* | C++1y is now C++14! | Aaron Ballman | 2014-08-19 | 1 | -1/+1 |
* | Add a state variable to the loop hint attribute. | Tyler Nowicki | 2014-07-31 | 1 | -3/+4 |
* | Revert r214333, "Add a state variable to the loop hint attribute." | NAKAMURA Takumi | 2014-07-31 | 1 | -4/+3 |
* | Add a state variable to the loop hint attribute. | Tyler Nowicki | 2014-07-30 | 1 | -3/+4 |
* | Revert r213437 | Warren Hunt | 2014-07-25 | 1 | -40/+8 |
* | Add support for '#pragma unroll'. | Mark Heffernan | 2014-07-21 | 1 | -7/+5 |
* | [MS-ABI] Assign SEH handler indices to __try blocks | Warren Hunt | 2014-07-19 | 1 | -8/+40 |
* | [OPENMP] Initial parsing and sema analysis for 'taskwait' directive. | Alexey Bataev | 2014-07-18 | 1 | -5/+0 |
* | [OPENMP] Initial parsing and sema analysis of 'taskyield' directive. | Alexey Bataev | 2014-07-18 | 1 | -1/+1 |
* | Sema: Check that __leave is contained in a __try block. | Nico Weber | 2014-07-06 | 1 | -1/+2 |
* | Add parser support for __leave (sema and onward still missing). | Nico Weber | 2014-07-06 | 1 | -0/+15 |
* | Fix parsing nested __if_exists blocks | Reid Kleckner | 2014-06-25 | 1 | -6/+8 |
* | [c++1z] Implement N3994: a range-based for loop can declare a variable with s... | Richard Smith | 2014-06-19 | 1 | -0/+42 |
* | MS static locals mangling: don't double-increment mangling number for switches | Hans Wennborg | 2014-06-17 | 1 | -0/+5 |
* | Adds a Pragma spelling for attributes to tablegen and makes use of it for loop | Tyler Nowicki | 2014-06-13 | 1 | -2/+1 |
* | [C++11] Use 'nullptr'. | Craig Topper | 2014-06-09 | 1 | -2/+2 |
* | Split out inline asm parsing into ParseStmtAsm.cpp | Alp Toker | 2014-06-08 | 1 | -728/+0 |
* | Don't include llvm/MC/MCParser throughout all of Sema | Alp Toker | 2014-06-08 | 1 | -1/+1 |
* | Adding a new #pragma for the vectorize and interleave optimization hints. | Aaron Ballman | 2014-06-06 | 1 | -0/+37 |
* | Refactoring. Remove release and take methods from ActionResult. Rename takeAs... | Nikola Smiljanic | 2014-05-29 | 1 | -32/+32 |
* | Improved recovery of switch statement | Serge Pavlov | 2014-05-21 | 1 | -27/+34 |
* | [C++11] Use 'nullptr'. Parser edition. | Craig Topper | 2014-05-21 | 1 | -17/+18 |
* | Suggest fix-it ':' when '=' used in for-range-declaration | Ismail Pazarbasi | 2014-05-08 | 1 | -5/+3 |
* | Rewrite NRVO determination. Track NRVO candidates on the parser Scope and app... | Nick Lewycky | 2014-05-03 | 1 | -1/+1 |
* | Fix another leak in ParseMicrosoftAsmStatement(), found by LSan. | Nico Weber | 2014-04-23 | 1 | -2/+3 |
* | Fix a memory leak found by LSan. | Nico Weber | 2014-04-23 | 1 | -3/+4 |
* | Update Target::createMCAsmParser calls for the LLVM interface change. | Evgeniy Stepanov | 2014-04-23 | 1 | -1/+5 |
* | Improve error recovery around colon. | Serge Pavlov | 2014-04-13 | 1 | -2/+3 |
* | [MS-ABI] Add support for #pragma section and related pragmas | Warren Hunt | 2014-04-08 | 1 | -0/+7 |