Age | Commit message (Expand) | Author |
2012-02-29 | Formatting. | Eric Christopher |
2012-02-24 | Reapply r151172 - Unwind path cleanup for array new list initializers - with a | Chad Rosier |
2012-02-23 | Replace a use of hasTrivialDefaultConstructor() with the appropriate | Douglas Gregor |
2012-02-22 | Revert r151172: Unwind path cleanup for array new list initializers. | Chad Rosier |
2012-02-22 | Unwind path cleanup for array new list initializers. | Sebastian Redl |
2012-02-22 | CodeGen for array new list initializers. Doesn't correctly clean up in the fa... | Sebastian Redl |
2012-02-19 | Make heap-allocation of std::initializer_list 'work'. | Sebastian Redl |
2012-02-17 | Whether an argument is required (in contrast with being an | John McCall |
2012-02-16 | Elide copy construction in new expressions. PR11757. | Eli Friedman |
2012-02-16 | Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hol... | Sebastian Redl |
2012-02-16 | Revert "Make CXXNewExpr contain only a single initialier, and not hold the us... | Sebastian Redl |
2012-02-16 | Make CXXNewExpr contain only a single initialier, and not hold the used const... | Sebastian Redl |
2012-02-14 | Implement IRGen of lambda expressions which capture arrays. | Eli Friedman |
2012-02-09 | Use RAII object for cleanups. | Eli Friedman |
2012-02-09 | Refactor lambda IRGen so AggExprEmitter::VisitLambdaExpr does the right thing. | Eli Friedman |
2012-02-07 | simplify a bunch of code to use the well-known LLVM IR types computed by Code... | Chris Lattner |
2011-12-09 | Make array new on a pointer to data member type work correctly. PR11523. | Eli Friedman |
2011-12-03 | Switch LValue so that it exposes alignment in CharUnits. (No functional chan... | Eli Friedman |
2011-12-03 | Switch the Alignment argument on AggValueSlot over to CharUnits, per John's r... | Eli Friedman |
2011-12-03 | Track alignment in AggValueSlot. No functional change in this patch, but I'l... | Eli Friedman |
2011-11-10 | Whenever explicitly activating or deactivating a cleanup, we | John McCall |
2011-10-14 | PR11124: Don't overwrite memory outside of a base class when performing zero-... | Eli Friedman |
2011-10-06 | CUDA: IR generation support for kernel call expressions | Peter Collingbourne |
2011-09-15 | Rewrite this loop to use partial destruction; I'm not sure it's | John McCall |
2011-09-06 | Rearrange code so that we pass the right pointer to delete[] when an exceptio... | Eli Friedman |
2011-09-06 | When performing a derived-to-base cast on the right-hand side of the | Douglas Gregor |
2011-08-30 | Declare and define implicit move constructor and assignment operator. | Sebastian Redl |
2011-08-26 | Since the 'is aliased' bit is critical for correctness in C++, it | John McCall |
2011-08-25 | Use stronger typing for the flags on AggValueSlot and require | John McCall |
2011-08-02 | PR10566: Make sure codegen for deleting an pointer to an incomplete type actu... | Eli Friedman |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner |
2011-07-22 | Convert IRBuilder::CreateGEP and IRBuilder::CreateInBoundsGEP to use | Jay Foad |
2011-07-18 | de-constify llvm::Type, patch by David Blaikie! | Chris Lattner |
2011-07-15 | Convert CallInst and InvokeInst APIs to use ArrayRef. | Jay Foad |
2011-07-14 | Change intrinsic getter to take an ArrayRef, now that the underlying function... | Benjamin Kramer |
2011-07-13 | Okay, that rule about zero-length arrays applies to destroying | John McCall |
2011-07-13 | Arrays are permitted to be zero-length in some situations. | John McCall |
2011-07-13 | Convert the standard default-construction loops to use phis and | John McCall |
2011-07-13 | Switch delete[] IR-generation over to the destroy framework, | John McCall |
2011-07-13 | When compiling ::delete for a class with a virtual destructor, call | Douglas Gregor |
2011-07-12 | Generalize Cleanup::Emit's "isForEH" parameter into a set | John McCall |
2011-07-09 | clang side to match the LLVM IR type system rewrite patch. | Chris Lattner |
2011-06-16 | Restore correct use of GC barriers. | John McCall |
2011-06-15 | Automatic Reference Counting. | John McCall |
2011-05-20 | Introduce Type::isSignedIntegerOrEnumerationType() and | Douglas Gregor |
2011-05-16 | Don't actually emit calls to the reserved global placement new and delete | John McCall |
2011-05-15 | The array-size operand to a new-expression is not necessarily a size_t. | John McCall |
2011-05-09 | Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and | Sean Hunt |
2011-05-08 | Move code to emit the callee of an CXXOperatorCallExpr out into a separate fu... | Anders Carlsson |
2011-05-06 | Fix false positive warning about uninitialized variable. | Cameron Esfahani |