Age | Commit message (Expand) | Author |
2009-06-17 | Update clang for the add ->add/fadd split. Likewise for sub and mul. | Chris Lattner |
2009-06-04 | Use PushConditionalTempDestruction/PopConditionalTempDestruction for the tern... | Anders Carlsson |
2009-06-04 | Use conditional temp destruction for || and &&. | Anders Carlsson |
2009-05-31 | Add a new function for emitting new functions. | Anders Carlsson |
2009-05-31 | Call EmitCXXExprWithTemporaries. | Anders Carlsson |
2009-05-29 | Fixup the rest of the trivial cases of the codegen of volatile. If | Mike Stump |
2009-05-27 | Functions that return references can be rvalues as well. | Anders Carlsson |
2009-05-22 | Fixup codegen for __block int i; i += rhs();. Should also slightly | Mike Stump |
2009-05-21 | Fixup blocks codegen for { __block i; i = rhs(); }, we want the rhs | Mike Stump |
2009-05-19 | Don't always zext the result of the not unary operator to an int. | Anders Carlsson |
2009-05-19 | Have AggExprEmitter::VisitCXXConstructExpr make new variables if necessary. S... | Anders Carlsson |
2009-04-25 | Fix pointer addressing and array subscripting of Objective-C interface | Daniel Dunbar |
2009-04-24 | Clang part of r69947. Reverting back 69574 as it is no longer needed. | Sanjiv Gupta |
2009-04-20 | PR3247: Handle a couple of cases where we weren't emitting VLA sizes (and | Eli Friedman |
2009-04-20 | PR3248: Make sure the evaluate the operand of a sizeof when it has a VLA type. | Eli Friedman |
2009-04-14 | Support code generation of 'this' exprs | Anders Carlsson |
2009-04-08 | Make sure value is initialized when built w/o asserts. | Daniel Dunbar |
2009-04-08 | Pointer width on targets like PIC16 is 16-bit, while the valid index size to ... | Sanjiv Gupta |
2009-04-02 | Remove -ftrapu. | Mike Stump |
2009-04-02 | Fixup -ftrapv to be more gcc compatible. -ftrapu (for want of a | Mike Stump |
2009-04-01 | Add -ftrapv support, patch from David Chisnall; well all except the | Mike Stump |
2009-04-01 | Revert r68221, -ftrapv support, which causes several regressions in | Douglas Gregor |
2009-04-01 | Add -ftrapv support, patch from David Chisnall; well all except the | Mike Stump |
2009-03-28 | Trivial cleanup. | Eli Friedman |
2009-03-28 | Misc small fixes/cleanups/comment changes. | Eli Friedman |
2009-03-28 | Change compound assignment operators to keep track of both the promoted | Eli Friedman |
2009-03-23 | Fix a subtle bug in CodeGen for the increment of a bitfield. | Eli Friedman |
2009-03-18 | fix PR3809, codegen for inc/dec of function pointers. | Chris Lattner |
2009-03-16 | Almost complete implementation of rvalue references. One bug, and a few uncle... | Sebastian Redl |
2009-03-07 | Back out the patch in r66302, and re-fix it properly. We assume for | Eli Friedman |
2009-03-07 | Codegen support for copy helpers for block literals. | Mike Stump |
2009-03-06 | Fixed a bug where generation of read-barriers caused | Fariborz Jahanian |
2009-03-04 | Minor cleanup for choose expressions: add a helper that returns the | Eli Friedman |
2009-03-04 | Attempt to fix PR3709: when converting from an integer to a pointer, | Eli Friedman |
2009-02-28 | First cut CodeGen support for __block variables. | Mike Stump |
2009-02-27 | Change the AST generated for offsetof a bit so that it looks like a | Eli Friedman |
2009-02-25 | CodeGen support for copied BlockDeclRefExprs. | Mike Stump |
2009-02-24 | first wave of fixes for @encode sema support. This is part of PR3648. | Chris Lattner |
2009-02-22 | Cleanp code with some recent suggestions. | Mike Stump |
2009-02-21 | Add CodeGen support for the helper for BlockDeclRefExprs. The easier | Mike Stump |
2009-02-19 | More codegen for blocks. The type of block literals should be better. | Mike Stump |
2009-02-18 | rip out __builtin_overload | Chris Lattner |
2009-02-14 | Generate the helper function for blocks. Now basic codegen is | Mike Stump |
2009-02-13 | fix rdar://6586493, a bug in codegen of the GNU | Chris Lattner |
2009-02-13 | Condense all the blocks code into CGBlocks.cpp. | Mike Stump |
2009-02-12 | Initial codegen for block literals. This is a work in progress. I've | Mike Stump |
2009-02-11 | Use EmitVAListRef instead of EmitLValue directly to handle array decay | Daniel Dunbar |
2009-02-11 | Fix rdar://6518463, increment of a bool is always true, due to | Chris Lattner |
2009-02-11 | finish off codegen support for sub of pointer to functions, | Chris Lattner |
2009-02-05 | Follow Eli's advice and store the VLA size with the native size_t type. Fixes... | Anders Carlsson |