| Commit message (Expand) | Author | Age | Files | Lines |
| * | When emitting a diagnostic about two-phase name lookup, don't do useless | Nick Lewycky | 2012-03-14 | 1 | -0/+3 |
| * | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -33/+33 |
| * | Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to | John McCall | 2012-03-10 | 1 | -2/+4 |
| * | Qualifiers on a canonical array type go on the outermost type, not the | Douglas Gregor | 2012-03-10 | 1 | -6/+0 |
| * | [AST/Sema/libclang] Replace getSourceRange().getBegin() with getLocStart(). | Daniel Dunbar | 2012-03-09 | 1 | -20/+20 |
| * | Literal operators can't have default arguments. | Richard Smith | 2012-03-09 | 1 | -7/+0 |
| * | Support for raw and template forms of numeric user-defined literals, | Richard Smith | 2012-03-09 | 1 | -71/+50 |
| * | AST representation for user-defined literals, plus just enough of semantic | Richard Smith | 2012-03-07 | 1 | -0/+103 |
| * | Single- and zero-element initializer lists to scalars are list-initialization... | Sebastian Redl | 2012-02-28 | 1 | -0/+1 |
| * | Implement a FIXME for conversion sequence distinction. Should fix PR12092. | Sebastian Redl | 2012-02-27 | 1 | -2/+10 |
| * | ArrayRef'ize various functions in the AST/Parser/Sema. | Ahmed Charles | 2012-02-25 | 1 | -120/+135 |
| * | Fix a regression from r151117: ADL requires that we attempt to complete any | Richard Smith | 2012-02-25 | 1 | -6/+5 |
| * | Implement C++11 [over.match.copy]p1b2, which allows the use of | Douglas Gregor | 2012-02-24 | 1 | -5/+9 |
| * | Teach overload resolution to prefer user-defined conversion via a | Douglas Gregor | 2012-02-22 | 1 | -0/+48 |
| * | Implement C++11 [expr.call]p11: If the operand to a decltype-specifier is a | Richard Smith | 2012-02-22 | 1 | -0/+2 |
| * | Add a bunch of missing calls to DiagnoseSentinelCalls. <rdar://problem/10885... | Eli Friedman | 2012-02-18 | 1 | -0/+4 |
| * | When overload resolution picks an implicitly-deleted special member | Douglas Gregor | 2012-02-15 | 1 | -5/+18 |
| * | Fix parsing new expressions using init lists. Probably still do the wrong thi... | Sebastian Redl | 2012-02-11 | 1 | -4/+82 |
| * | Implement the conversion to a function pointer for lambda expressions, | Douglas Gregor | 2012-02-10 | 1 | -3/+5 |
| * | [libclang] For CXXOperatorCallExprs, give a valid source location to the Decl... | Argyrios Kyrtzidis | 2012-02-08 | 1 | -7/+12 |
| * | Revise the SplitQualType interface to make it its own thing instead of | John McCall | 2012-02-08 | 1 | -1/+1 |
| * | Fixed instantiation of DependentScopeDeclRefExpr. | Abramo Bagnara | 2012-02-06 | 1 | -2/+2 |
| * | In C++11 mode, when an integral constant expression is desired and we have a | Richard Smith | 2012-02-04 | 1 | -6/+9 |
| * | Don't allow a value of a scoped enumeration to be used as the first bound for an | Richard Smith | 2012-02-04 | 1 | -6/+19 |
| * | Initialize the user defined conversion function to null if this is an aggrega... | Benjamin Kramer | 2012-02-02 | 1 | -0/+1 |
| * | Split Sema::MarkDeclarationReferenced into multiple functions; the additional... | Eli Friedman | 2012-02-02 | 1 | -11/+11 |
| * | constexpr: disallow signed integer overflow in integral conversions in constant | Richard Smith | 2012-01-30 | 1 | -4/+14 |
| * | Added source location for the template keyword in AST template-id expressions. | Abramo Bagnara | 2012-01-27 | 1 | -3/+8 |
| * | Slight refactoring; catch yet another case where we were missing an lvalue-to... | Eli Friedman | 2012-01-26 | 1 | -2/+9 |
| * | Allow typo correction to be disabled in BuildOverloadedCallExpr variant. | Kaelyn Uhrain | 2012-01-25 | 1 | -5/+27 |
| * | Add custom callback object for typo correction in BuildRecoveryCallExpr. | Kaelyn Uhrain | 2012-01-25 | 1 | -3/+49 |
| * | Minor fixups for auto deduction of initializer lists. | Sebastian Redl | 2012-01-23 | 1 | -1/+1 |
| * | constexpr: converted constant expression handling for enumerator values, case | Richard Smith | 2012-01-18 | 1 | -2/+164 |
| * | Convert DiagnoseEmptyLookup to use correction callbacks. | Kaelyn Uhrain | 2012-01-18 | 1 | -1/+4 |
| * | Move narrowing conversion detection code from SemaInit to SemaOverload, ready | Richard Smith | 2012-01-18 | 1 | -0/+157 |
| * | Basic overloading support for std::initializer_list. | Sebastian Redl | 2012-01-17 | 1 | -3/+29 |
| * | Remove unreachable code in Clang. (replace with llvm_unreachable where approp... | David Blaikie | 2012-01-17 | 1 | -9/+6 |
| * | Use a smaller vector than SmallVector. | Benjamin Kramer | 2012-01-14 | 1 | -3/+2 |
| * | Clear ImplicitConversionSequence the obvious way which turns out to be less f... | Benjamin Kramer | 2012-01-14 | 1 | -4/+3 |
| * | Give OverloadCandidateSet the responsibility for destroying the implicit conv... | Benjamin Kramer | 2012-01-14 | 1 | -1/+5 |
| * | Pool allocate ImplicitConversionSequences. | Benjamin Kramer | 2012-01-14 | 1 | -9/+10 |
| * | OverloadCandidateSet: Stop exposing SmallVector internals | Benjamin Kramer | 2012-01-14 | 1 | -22/+9 |
| * | More lambda work: semantic analysis of capturing 'this'. It's a bit complica... | Eli Friedman | 2012-01-07 | 1 | -0/+1 |
| * | Overloading for initializer list construction. | Sebastian Redl | 2011-12-22 | 1 | -80/+126 |
| * | Two null Decl*'s don't refer to the same declaration, because they | Douglas Gregor | 2011-12-15 | 1 | -3/+4 |
| * | Replace all comparisons between ObjCInterfaceDecl pointers with calls | Douglas Gregor | 2011-12-15 | 1 | -1/+2 |
| * | Make the diagnostic message more consistant. Update the type comparison to | Richard Trieu | 2011-12-13 | 1 | -11/+16 |
| * | Implement overload resolution for reference-typed parameters supplied with in... | Sebastian Redl | 2011-12-03 | 1 | -3/+65 |
| * | In Microsoft mode, make "Unqualified lookup into dependent bases of class tem... | Francois Pichet | 2011-11-25 | 1 | -1/+1 |
| * | Add feature to diagnostics that will provide more information on function | Richard Trieu | 2011-11-23 | 1 | -14/+121 |