- 00bbdcf Remove llvm:: from uses of ArrayRef. by Craig Topper · 11 years ago
- a8e9d2e [OPENMP] Loop canonical form analysis (Sema) by Alexander Musman · 11 years ago
- 47d9ed4 Fix 'this' capturing Generic lambdas used within default initializers (PR19876) by Faisal Vali · 11 years ago
- 03ff259 Refactoring. Remove Owned method from Sema. by Nikola Smiljanic · 11 years ago
- 01a7598 Refactoring. Remove release and take methods from ActionResult. Rename takeAs to getAs. by Nikola Smiljanic · 11 years ago
- c3ec149 [C++11] Use 'nullptr'. Sema edition. by Craig Topper · 11 years ago
- e37a6ce Sema: Implement DR244 by David Majnemer · 11 years ago
- debcd50 Push implicitly-declared allocation functions into the IdResolver. Otherwise, by Richard Smith · 11 years ago
- 5182b5a Sema::FindAllocationFunctions(): Fix \param. [-Wdocumentation] by NAKAMURA Takumi · 11 years ago
- d6f9e73 PR19729: Delete a bunch of bogus code in Sema::FindAllocationOverload. This by Richard Smith · 11 years ago
- a224527 Revert "Sema: Implement DR244" by David Majnemer · 12 years ago
- 22fcb08 Sema: Implement DR244 by David Majnemer · 12 years ago
- e502507 MSVCCompat: Don't produce an invalid AST when accepting void pseudo-dtors by Reid Kleckner · 12 years ago
- 100b24a Implement [over.match.oper]p3 properly, by filtering the non-candidates out by Richard Smith · 12 years ago
- 1b4b6ba PR19178 __is_constructible returns true for abstract types. by Nikola Smiljanic · 12 years ago
- 66204ec DR1346: a parenthesized braced-init-list cannot be used as the initializer when by Richard Smith · 12 years ago
- e14c0f8 [C++11] Add 'override' keyword to virtual methods that override their base class. by Craig Topper · 12 years ago
- 202dc13 PR18876: The special-case rule that ignores the destruction of a top-level by Richard Smith · 12 years ago
- f8b417c Fix lifetime issue causing buildbot failures. by Richard Smith · 12 years ago
- c015bc2 Fold together two repeated identical 'if's. by Richard Smith · 12 years ago
- c941ba9 Temporary fix for PR18473: Don't try to evaluate the initializer for a by Richard Smith · 12 years ago
- bdd1464 Add implicit declarations of allocation functions when looking them up for by Richard Smith · 12 years ago
- 2eaf206 Fix typo 'uusal'. by Richard Smith · 12 years ago
- 6a6a4bb PR17052 / DR1560 (+DR1550): In a conditional expression between a glvalue and a by Richard Smith · 12 years ago
- 314cc81 Rename getResultType() on function and method declarations to getReturnType() by Alp Toker · 12 years ago
- c278c00 Build an appropriate (albeit trivial) TypeSourceInfo for a destructor name, so by Richard Smith · 12 years ago
- 9cacbab Rename FunctionProtoType accessors from 'arguments' to 'parameters' by Alp Toker · 12 years ago
- 73287bf MSVC 2013 type trait support by Alp Toker · 12 years ago
- b4bca41 Fix nothrow trait with multiple default constructors by Alp Toker · 12 years ago
- 1121de3 Fix string-literal to char* conversion in overload resolution for C++11 by Ismail Pazarbasi · 12 years ago
- 36a5350 Distinguish between attributes explicitly written at the request of the user, and attributes implicitly generated to assist in bookkeeping by the compiler. This is done so by table generating a CreateImplicit method for each attribute. by Aaron Ballman · 12 years ago
- bfa3934 Rename language option MicrosoftMode to MSVCCompat by Alp Toker · 12 years ago
- 4a97967 It turns out the problem was a bit more wide-spread. Removing a lot of unneeded typecasts. getScopeRep() already returns a NestedNameSpecifier. by Aaron Ballman · 12 years ago
- 95e7ff2 Eliminate UnaryTypeTraitExpr by Alp Toker · 12 years ago
- 5294e6e Don't reserve __builtin_types_compatible_p as a C++ keyword by Alp Toker · 12 years ago
- 88f64e6 Remove an unused parameter and include after r197273 by Alp Toker · 12 years ago
- cbb9034 Eliminate BinaryTypeTraitExpr by Alp Toker · 12 years ago
- 40f9b1c Unify type trait parsing by Alp Toker · 12 years ago
- db05cd3 PR17602: check accessibility when performing an implicit derived-to-base by Richard Smith · 12 years ago
- ab3d646 [REFACTOR] Refactored some of the generic-lambda capturing code. by Faisal Vali · 12 years ago
- 49d9f48 Tweak r196646 by Alp Toker · 12 years ago
- 8baeac7 Type traits: No need for switch to handle __builtin_types_compatible_p by Alp Toker · 12 years ago
- 028ed91 Fix code typos spotted while working on type traits by Alp Toker · 12 years ago
- f03bd30 PR17983: Fix crasher bug in C++1y mode when performing a non-global array by Richard Smith · 12 years ago
- 5fb7c3c Fix init-captures for generic lambdas. by Faisal Vali · 12 years ago
- d091dc1 Reject template-ids containing literal-operator-ids that have a dependent by Richard Smith · 12 years ago
- 965f882 Remove a whole lot of unused variables by Alp Toker · 12 years ago
- 218e94b COSMETIC: Fix 80 column overflow in some comments introduced in r194188 by Faisal Vali · 12 years ago
- 8bc2bc7 A quick fix to PR17877 that was introduced by r194188 (generic-lambda-capturing) that broke libc++. by Faisal Vali · 12 years ago
- f84a105 Unbreak the Clang -Werror build by removing some unused variables by David Blaikie · 12 years ago
- a17d19f This patch implements capturing of variables within generic lambdas. by Faisal Vali · 12 years ago
- 9dbc574 Fix diagnostic goof in r194161. by Richard Smith · 12 years ago
- 79c927b Add a limit to the length of a sequence of 'operator->' functions we will by Richard Smith · 12 years ago
- 8b86f2d Implement final resolution of DR1402: implicitly-declared move operators that by Richard Smith · 12 years ago
- a543308 [-fms-extensions] Permit 'override' in C++98 and 'sealed' as a synonym for 'final' by David Majnemer · 12 years ago
- c37877d Convert anachronistic use of 'void *' to 'DeclContext *' in Scope that was a holdover from the long-dead Action interface. by Ted Kremenek · 12 years ago
- 1cdec01 Implement C++1y sized deallocation (n3778). This is not enabled by -std=c++1y; by Richard Smith · 12 years ago
- 9006190 PR16529: Don't forget to add the CXXFunctionalCastExpr type sugar to an by Richard Smith · 12 years ago
- d548907 Avoid getting an argument of allocation function if it does not exist. by Serge Pavlov · 12 years ago
- 9ea1e16 Fix is_trivially_constructible preconditions. by Eli Friedman · 12 years ago
- 59c0ec2 AST: __uuidof should leak through templated types by David Majnemer · 12 years ago
- 89fe0d5 Properly track l-paren of a CXXFucntionalCastExpr. by Eli Friedman · 12 years ago
- 957c8b1 A few small cleanups to r187504. Thanks to dblaikie for the assist. by Kaelyn Uhrain · 12 years ago
- 0c51de4 Improve the diagnostic experience, including adding recovery, for by Kaelyn Uhrain · 12 years ago
- 374089e ObjectiveC arc: Move check for type conversions in arc by Fariborz Jahanian · 12 years ago
- 72d7405 Add missing check for creating an instance of an abstract class through an by Richard Smith · 12 years ago
- 42713d7 If an unimported submodule of an imported module contains a declaration of a by Richard Smith · 12 years ago
- bf4aa57 contextual conversion fix: C++98 compatibility warning. by Larisse Voufo · 12 years ago
- 9f380c5 r184100 Fix -- Updated test cases for contextual conversion by Larisse Voufo · 12 years ago
- 09ce33d Revert "Updated test cases for contextual conversion" by Rafael Espindola · 12 years ago
- 249f927 Updated test cases for contextual conversion by Larisse Voufo · 12 years ago
- 0f1394c Updated the support for contextual conversion tweaks (n3323) with a previously overlooked part: implicitly converting array sizes to size_t, rather than contextually converting them to some unique type. by Larisse Voufo · 12 years ago
- a9d4f77 Allow paren casted throw statements inside of ternary expressions by David Majnemer · 12 years ago
- 324fbee Add support to fallback on operator new when a placement operator new[] is called for which there is no valid declaration. This fallback only happens in Microsoft compatibility mode. This patch addresses PR13164, and improves support for the WDK. by Aaron Ballman · 12 years ago
- a23ab51 PR14772: Support constant expression evaluation for _Atomic types. by Richard Smith · 12 years ago
- ccc1181 Refactor places which perform contextual implicit conversions to go through a by Richard Smith · 12 years ago
- be02210 ArrayRef'ize Sema::FindAllocationFunctions by Dmitri Gribenko · 12 years ago
- 08c8668 ArrayRef'ize Sema::FindAllocationOverload by Dmitri Gribenko · 12 years ago
- d95656e Revert my r181563, breaks tests on buildbots by Dmitri Gribenko · 12 years ago
- 8537831 ArrayRef'ize Sema::FindAllocationOverload by Dmitri Gribenko · 12 years ago
- 9c785c2 ArrayRef'ize some SemaOverload methods by Dmitri Gribenko · 12 years ago
- 78852e9 Replace 'MultiExprArg()' with 'None' by Dmitri Gribenko · 13 years ago
- e54c307 ArrayRef'ization of some methods in SemaOverload. Patch by Robert Wilhelm! by Richard Smith · 13 years ago
- 22262ab Don't build a call expression referring to a function which we're not allowed by Richard Smith · 13 years ago
- 8f8930f ArrayRef'ize InitializationSequence constructor and InitializationSequence::Diagnose() by Dmitri Gribenko · 13 years ago
- f413f5e Move parsing of identifiers in MS-style inline assembly into by John McCall · 13 years ago
- 061f1e2 When deducing an 'auto' type, don't modify the type-as-written. by Richard Smith · 13 years ago
- 27d807c Don't treat a non-deduced 'auto' type as being type-dependent. Instead, there by Richard Smith · 13 years ago
- e7d7c4c Small CapturedStmt improvements by Ben Langmuir · 13 years ago
- 74aeef5 Implement C++1y decltype(auto). by Richard Smith · 13 years ago
- d9f663b C++1y constexpr extensions, round 1: Allow most forms of declaration and by Richard Smith · 13 years ago
- 6dfa25a Sema for Captured Statements by Tareq A. Siraj · 13 years ago
- 5e77d76 Basic support for Microsoft property declarations and references thereto. by John McCall · 13 years ago
- 6ae7e50 Add 178663 back. by Rafael Espindola · 13 years ago
- 985a3ab Revert 178663. by Rafael Espindola · 13 years ago
- adea16b Don't compute a patched/semantic storage class. by Rafael Espindola · 13 years ago
- c9523d4 Implement compiler intrinsics needed for compatibility with MSVC 2012 <type_traits>. by Joao Matos · 13 years ago
- 7447af4 Implement special-case name lookup for inheriting constructors: member by Richard Smith · 13 years ago
- 5e026f5 PR7256: Provide a fixit for incorrect destructor declarations by David Blaikie · 13 years ago
- 5c38272 ArrayRef-ize ASTContext::getFunctionType and Sema::BuildFunctionType. by Jordan Rose · 13 years ago