| Commit message (Expand) | Author | Age | Files | Lines |
| * | There is no need to use separate dir name for AT_comp_dir attribute. Using ab... | Devang Patel | 2010-07-23 | 1 | -8/+15 |
| * | Vectors are not integer types, so the type system should not classify | Douglas Gregor | 2010-07-23 | 2 | -8/+8 |
| * | Keep track of artificial scopes introduced by line directives. For example, | Devang Patel | 2010-07-22 | 4 | -1/+83 |
| * | Turn off EH cleanups for __block variables; they caused some internal buildbot | John McCall | 2010-07-22 | 1 | -1/+3 |
| * | atch for implementation of objective-c's -Wselector | Fariborz Jahanian | 2010-07-22 | 1 | -2/+2 |
| * | ObjCId is special "struct objc_object". Make this explicit in debug info. | Devang Patel | 2010-07-21 | 1 | -0/+6 |
| * | Fix regression caused by r108911. | Devang Patel | 2010-07-21 | 1 | -1/+2 |
| * | Don't crash when sending a message inside a block with the non-fragile ABI (G... | David Chisnall | 2010-07-21 | 1 | -1/+1 |
| * | Mark the load after calling objc_msg_lookup_sender() so that it doesn't get o... | David Chisnall | 2010-07-21 | 1 | -2/+2 |
| * | Rename LazyCleanup -> Cleanup. No functionality change for these last three | John McCall | 2010-07-21 | 10 | -178/+173 |
| * | Rip out EHCleanupScope. | John McCall | 2010-07-21 | 4 | -296/+13 |
| * | Kill the CleanupBlock API. | John McCall | 2010-07-21 | 2 | -84/+0 |
| * | Switch the fragile-ABI @finally/@synchronized cleanup over to using a lazy | John McCall | 2010-07-21 | 1 | -32/+53 |
| * | Code simplification. | John McCall | 2010-07-21 | 1 | -14/+4 |
| * | Switch the main possibly-conditional temporary cleanup over to being lazy. | John McCall | 2010-07-21 | 1 | -33/+37 |
| * | Switch the destructor for a temporary arising from a reference binding over to | John McCall | 2010-07-21 | 3 | -12/+14 |
| * | Switch the __cxa_guard_abort cleanup to being a lazy cleanup. | John McCall | 2010-07-21 | 1 | -5/+17 |
| * | Switch some random local-decl cleanups over to using lazy cleanups. Turn on | John McCall | 2010-07-21 | 1 | -52/+57 |
| * | Switch finally cleanups over to being lazy cleanups. We get basically nothing | John McCall | 2010-07-21 | 2 | -46/+70 |
| * | Implement proper base/member destructor EH chaining. | John McCall | 2010-07-21 | 2 | -156/+175 |
| * | Change PushDestructorCleanup to use lazy cleanups. | John McCall | 2010-07-21 | 1 | -8/+16 |
| * | Convert the EH cleanups for base and member destructors in a constructor into | John McCall | 2010-07-21 | 1 | -18/+42 |
| * | Implement zero-initialization for array new when there is an | Douglas Gregor | 2010-07-21 | 3 | -21/+82 |
| * | Convert the end-catch call for finally blocks to a lazy cleanup. This kills off | John McCall | 2010-07-21 | 1 | -13/+25 |
| * | Convert the ObjC @synchronized cleanups to laziness. This is not actually | John McCall | 2010-07-21 | 2 | -13/+32 |
| * | Add a little helper method which will be useful soon. | John McCall | 2010-07-21 | 1 | -0/+4 |
| * | Remove unintended code that was checked in as part of r108916. | Devang Patel | 2010-07-20 | 1 | -12/+0 |
| * | Remove unused argument. | Devang Patel | 2010-07-20 | 4 | -13/+13 |
| * | Fix the IR generation for catching pointers by references. | John McCall | 2010-07-20 | 2 | -2/+59 |
| * | in 'new int[4]', constant fold the 4*4=16 instead of | Chris Lattner | 2010-07-20 | 1 | -34/+56 |
| * | Follow the implementation approach suggested by PR6687, | Chris Lattner | 2010-07-20 | 3 | -49/+18 |
| * | Adopt objc_assign_threadlocal() for __thread variables of GC types. | Fariborz Jahanian | 2010-07-20 | 5 | -17/+57 |
| * | Print template argument names for template class. | Devang Patel | 2010-07-20 | 2 | -1/+57 |
| * | implement rdar://5739832 - operator new should check for overflow in multiply, | Chris Lattner | 2010-07-20 | 4 | -11/+68 |
| * | Use getDebugLoc and setDebugLoc instead of getDbgMetadata and setDbgMetadata, | Dan Gohman | 2010-07-20 | 1 | -4/+3 |
| * | delete a loop that just generates dead code. In an example | Chris Lattner | 2010-07-20 | 1 | -10/+0 |
| * | remove the special case for constant array sizes from | Chris Lattner | 2010-07-20 | 1 | -24/+2 |
| * | Re-apply fixed version of 108749, correctly conditionalizing the new sections on | Jim Grosbach | 2010-07-20 | 1 | -5/+15 |
| * | Update ImplicitCastExpr to be able to represent an XValue. | Sebastian Redl | 2010-07-20 | 2 | -3/+4 |
| * | Correct line info for declarations/definitions. Radar 8063111. | Stuart Hastings | 2010-07-19 | 1 | -0/+1 |
| * | Temporarily revert. Some odd internal breakage is likely related. | Jim Grosbach | 2010-07-19 | 1 | -4/+4 |
| * | Put ObjC method names, method types and class names in separate string literal | Jim Grosbach | 2010-07-19 | 1 | -4/+4 |
| * | Fix mangling for static member variables of classes inside an extern "C" | Eli Friedman | 2010-07-18 | 1 | -0/+4 |
| * | Improve the representation of the atomic builtins in a few ways. First, we make | Chandler Carruth | 2010-07-18 | 1 | -30/+86 |
| * | BUILD_ARCHIVE is the default for libraries, no need to set it. | Chris Lattner | 2010-07-18 | 1 | -1/+0 |
| * | Fix crash initializing a bit-field with a non-constant in a place where we | Eli Friedman | 2010-07-17 | 1 | -4/+3 |
| * | The GNU-runtime ObjC personality function doesn't let us rethrow with URR for | John McCall | 2010-07-17 | 2 | -43/+92 |
| * | Fix for PR3800: make sure not to evaluate the expression for a read-write | Eli Friedman | 2010-07-16 | 2 | -16/+32 |
| * | IRgen: Support user defined attributes on block runtime functions. | Daniel Dunbar | 2010-07-16 | 2 | -0/+60 |
| * | IRgen: Move blocks runtime interfaces to CodeGenModule. | Daniel Dunbar | 2010-07-16 | 4 | -67/+80 |