| Commit message (Expand) | Author | Age | Files | Lines |
| * | Replace MarkVarRequired with a more generic | Rafael Espindola | 2012-03-08 | 1 | -4/+3 |
| * | Fix a small difference in sema and codegen views of what needs to be output. | Rafael Espindola | 2012-03-05 | 1 | -4/+8 |
| * | Lambda closure types are always considered to be like "local" classes, | Douglas Gregor | 2012-02-16 | 1 | -3/+6 |
| * | Minor fix to template instantiation, which properly instantiates | DeLesley Hutchins | 2012-02-16 | 1 | -1/+1 |
| * | Update constexpr implementation to match CWG's chosen approach for core issues | Richard Smith | 2012-02-13 | 1 | -11/+4 |
| * | Represent C++ direct initializers as ParenListExprs before semantic analysis | Sebastian Redl | 2012-02-11 | 1 | -111/+59 |
| * | Move instantiateTemplateAttribute into the sema namespace, make helpers static. | Benjamin Kramer | 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 | -9/+4 |
| * | When we're substituting into a function parameter pack and expect to | Douglas Gregor | 2012-01-25 | 1 | -1/+2 |
| * | Delayed template instantiation of late-parsed attributes. | DeLesley Hutchins | 2012-01-20 | 1 | -6/+19 |
| * | Instantiate dependent attributes when instantiating templates. | DeLesley Hutchins | 2012-01-20 | 1 | -3/+5 |
| * | Remove unused variables. | Benjamin Kramer | 2012-01-20 | 1 | -2/+1 |
| * | An instantiation of a constexpr static data member in a class template is | Richard Smith | 2012-01-19 | 1 | -0/+1 |
| * | De-virtualize getPreviousDecl() and getMostRecentDecl() when we know | Douglas Gregor | 2012-01-14 | 1 | -10/+10 |
| * | Tweak the fix to PR8977: an empty expression-list represents value initializa... | Eli Friedman | 2012-01-05 | 1 | -4/+3 |
| * | Delay checking of typedefs of dependent types. Fixes PR11630. | Rafael Espindola | 2011-12-26 | 1 | -1/+6 |
| * | C++ constant expression handling: eagerly instantiate static const integral data | Richard Smith | 2011-12-21 | 1 | -2/+1 |
| * | Unlike in C++03, a constant-expression is not an unevaluated operand in C++11. | Richard Smith | 2011-12-20 | 1 | -15/+17 |
| * | Make sure that we infer __strong, etc. when we instantiate variables | Douglas Gregor | 2011-12-10 | 1 | -0/+6 |
| * | Fixed lexical declaration context when instantiating a friend / out-of-line c... | Abramo Bagnara | 2011-11-26 | 1 | -0/+7 |
| * | Fixed implicit instantiations source range. | Abramo Bagnara | 2011-11-18 | 1 | -0/+3 |
| * | Compute whether a class is trivial correctly for template classes with an exp... | Eli Friedman | 2011-11-15 | 1 | -0/+6 |
| * | Removing unused initialization. | David Blaikie | 2011-11-10 | 1 | -2/+1 |
| * | Drastically simplify the mapping from the declaration corresponding to | Douglas Gregor | 2011-11-07 | 1 | -66/+40 |
| * | Revert r143551. It is causing g++.dg/template/crash52.C test failure. | Devang Patel | 2011-11-04 | 1 | -40/+66 |
| * | Drastically simplify the mapping from the declaration corresponding to | Douglas Gregor | 2011-11-02 | 1 | -66/+40 |
| * | Rework the AST for the initializer of a delegating constructor, so | Douglas Gregor | 2011-11-01 | 1 | -10/+15 |
| * | Fixed FriendDecl source locations. | Abramo Bagnara | 2011-10-29 | 1 | -1/+2 |
| * | Add a -Wc++98-compat warning for friend functions of class templates which would | Richard Smith | 2011-10-19 | 1 | -7/+29 |
| * | Revert r142142: "Make a C-style cast a const-cast, to suppress a GCC warning." | Sebastian Redl | 2011-10-17 | 1 | -1/+1 |
| * | Make a C-style cast a const-cast, to suppress a GCC warning. I should fix the... | Sebastian Redl | 2011-10-16 | 1 | -1/+1 |
| * | Move some bool flags out of function parameter lists. | Kaelyn Uhrain | 2011-10-11 | 1 | -6/+3 |
| * | After instantiating a 'noexcept' expression, be sure to convert it to | Douglas Gregor | 2011-10-09 | 1 | -0/+14 |
| * | Silence a warning about casting away constness. | Benjamin Kramer | 2011-10-08 | 1 | -4/+3 |
| * | Whitespace | NAKAMURA Takumi | 2011-10-08 | 1 | -203/+203 |
| * | constexpr: semantic checking for constexpr functions and constructors. Based in | Richard Smith | 2011-10-01 | 1 | -10/+12 |
| * | Correctly parse braced member initializers (even in delayed parsing) and corr... | Sebastian Redl | 2011-09-24 | 1 | -26/+28 |
| * | Removing a bunch of dead returns/breaks after llvm_unreachables. | David Blaikie | 2011-09-23 | 1 | -3/+0 |
| * | Switch assert(0/false) llvm_unreachable. | David Blaikie | 2011-09-23 | 1 | -4/+4 |
| * | ArrayRef-ifying the UnexpandedParameterPacks passed to Sema::CheckParameterPa... | David Blaikie | 2011-09-22 | 1 | -6/+3 |
| * | ArrayRef-ifying Function/BlockDecl's setParams | David Blaikie | 2011-09-21 | 1 | -2/+2 |
| * | Changed references of BaseTy, MemInitTy, CXXScopeTy, TemplateParamsTy to CXXB... | Richard Trieu | 2011-09-09 | 1 | -2/+2 |
| * | Always mark friend function declarations in class templates as | Chandler Carruth | 2011-08-18 | 1 | -3/+7 |
| * | Track in the AST whether a function is constexpr. | Richard Smith | 2011-08-15 | 1 | -4/+11 |
| * | Implement function template specialization at class scope extension in Micros... | Francois Pichet | 2011-08-14 | 1 | -5/+32 |
| * | Make the deserialization of Sema::PendingInstantiations lazy. At this | Douglas Gregor | 2011-07-28 | 1 | -0/+8 |
| * | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -18/+18 |
| * | Replace r134583's fix for PR10290 with one which also works for non-value-dep... | Richard Smith | 2011-07-20 | 1 | -16/+14 |
| * | Use attributes from the definition (if available) when | Rafael Espindola | 2011-07-06 | 1 | -2/+7 |
| * | Look through parenthesized declarators when determining whether an | Douglas Gregor | 2011-07-05 | 1 | -1/+1 |