Age | Commit message (Expand) | Author |
2013-05-06 | Grab-bag of bit-field fixes: | John McCall |
2013-05-06 | Fix representation of compound literals for C++ objects with destructors. | Jordan Rose |
2013-05-06 | Fix assert if __extension__ or _Generic is used when initializing a char arra... | Richard Smith |
2013-05-05 | Replace 'MultiExprArg()' with 'None' | Dmitri Gribenko |
2013-05-05 | Handle parens properly when initializing a char array from a string literal. | Richard Smith |
2013-05-05 | Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constr... | Dmitri Gribenko |
2013-05-04 | Don't build a call expression referring to a function which we're not allowed | Richard Smith |
2013-05-03 | ArrayRef'ize InitializationSequence constructor and InitializationSequence::D... | Dmitri Gribenko |
2013-04-26 | C++1y: support simple variable assignments in constexpr functions. | Richard Smith |
2013-04-20 | C++1y: Allow aggregates to have default initializers. | Richard Smith |
2013-04-16 | Basic support for Microsoft property declarations and | John McCall |
2013-04-11 | Force a load when creating a reference to a temporary copied from a bitfield. | Jordan Rose |
2013-03-26 | <rdar://problem/13278115> Improve diagnostic when failing to bind an rvalue r... | Douglas Gregor |
2013-03-25 | <rdar://problem/13395022> Strip references when extracting an initializer_lis... | Douglas Gregor |
2013-03-19 | Add a clarifying note when a return statement is rejected because | John McCall |
2013-03-18 | Bring inheriting constructor implementation up-to-date with current defect | Richard Smith |
2013-02-18 | Replace TypeLoc llvm::cast support to be well-defined. | David Blaikie |
2013-02-15 | Make helper functions static. | Benjamin Kramer |
2013-02-12 | The meat of this patch is in BuildCXXMemberCalLExpr where we make it use | Nick Lewycky |
2013-02-07 | Add OpenCL samplers as Clang builtin types and check sampler related restrict... | Guy Benyei |
2013-02-05 | Add some missing diagnostics for C++11 narrowing conversions. | Richard Smith |
2013-02-02 | Don't forget to run destructors when we create an array temporary of class type. | Richard Smith |
2013-01-26 | Revert r172285 (suppressing a 'redundant' -Wc++98-compat warning) and add a | Richard Smith |
2013-01-20 | Implement OpenCL event_t as Clang builtin type, including event_t related Ope... | Guy Benyei |
2013-01-15 | Don't crash when binding a reference to a temporary pointer created from | Richard Smith |
2013-01-12 | Only produce one -Wc++98-compat warning when initializing a reference from an... | Richard Smith |
2013-01-08 | PR14838: When a member reference is bound to a temporary, don't forget to | Richard Smith |
2013-01-02 | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith |
2012-12-25 | Fix for PR12222. | Erik Verbruggen |
2012-12-19 | PR13470: Ensure that copy-list-initialization isntantiates as | Richard Smith |
2012-12-19 | Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as pe... | David Blaikie |
2012-12-08 | Implement C++03 [dcl.init]p5's checking for value-initialization of references | Richard Smith |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth |
2012-12-01 | Consistently use 'needsImplicit<special member>' to determine whether we need | Richard Smith |
2012-11-28 | Don't return a pointer to an UnresolvedSetImpl in the CXXRecordDecl interface, | Argyrios Kyrtzidis |
2012-11-27 | objective-C arc: load of a __weak object happens via call to | Fariborz Jahanian |
2012-11-13 | Copy the decls returned by DeclContext::lookup_result to a | Argyrios Kyrtzidis |
2012-10-18 | PR14021: Copy lookup results to ensure safe iteration. | David Blaikie |
2012-10-18 | Tests for DR1507. | Richard Smith |
2012-10-17 | Update comment to match DR1502. | Richard Smith |
2012-10-01 | Cleaning up the self initialization checker. | Richard Trieu |
2012-09-28 | When processing an InitListExpr and skipping the initialization of an invalid | Richard Smith |
2012-09-10 | Move the null check outside of the loop, no functionality change. | Argyrios Kyrtzidis |
2012-08-24 | Push ArrayRef through the Expr hierarchy. | Benjamin Kramer |
2012-08-23 | Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl... | Benjamin Kramer |
2012-08-23 | Remove ASTOwningVector, it doesn't own anything and provides no value over Sm... | Benjamin Kramer |
2012-08-23 | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer |
2012-08-23 | Fix a bunch of -Wdocumentation warnings. | Dmitri Gribenko |
2012-08-04 | Simplify code, no functionality change. | Benjamin Kramer |
2012-07-31 | Explicitly defaulted constructors cannot be used for default initialization. | Aaron Ballman |