| Commit message (Expand) | Author | Age | Files | Lines |
* | Add some comments to the virtual work. Thanks to Doug Gregor for the review. | Sebastian Redl | 2009-01-09 | 1 | -0/+3 |
* | Dead stores checker: Don't flag dead stores for self-assignments (common esca... | Ted Kremenek | 2009-01-09 | 1 | -3/+10 |
* | Enhance PTH 'getSpelling' caching: | Ted Kremenek | 2009-01-09 | 1 | -15/+104 |
* | Prevent a segfault for vaarg expressions on unsupported architectures. | Sebastian Redl | 2009-01-09 | 1 | -2/+4 |
* | This patch removes mergeProperties and does the property lookup | Fariborz Jahanian | 2009-01-09 | 2 | -36/+12 |
* | Implement EmitUnsupportedRValue to generate an appropriately typed RValue. | Daniel Dunbar | 2009-01-09 | 1 | -3/+13 |
* | Very basic support for pure virtual functions. | Sebastian Redl | 2009-01-09 | 1 | -4/+27 |
* | Replace DeclContext's vector of ScopedDecl pointers with a linked list | Douglas Gregor | 2009-01-09 | 4 | -10/+25 |
* | Make sure that ScopedDecls passed to DeclContext::addDecl are added into thei... | Douglas Gregor | 2009-01-09 | 3 | -1/+16 |
* | Provide a new kind of iterator, the specific_decl_iterator, that | Douglas Gregor | 2009-01-09 | 10 | -18/+18 |
* | Emit more refined "unsupported" error for block expressions. | Daniel Dunbar | 2009-01-09 | 1 | -0/+5 |
* | Give "unsupported" error on calls through block pointers instead of | Daniel Dunbar | 2009-01-09 | 2 | -6/+28 |
* | Move property API's up to ObjCContainerDecl (removing a lot of duplicate code). | Steve Naroff | 2009-01-09 | 5 | -154/+65 |
* | Fix rdar://6480479 - [parser] infinite loop on invalid input | Chris Lattner | 2009-01-09 | 1 | -0/+6 |
* | Convert block types in IRgen. This is not the correct type, but | Daniel Dunbar | 2009-01-09 | 1 | -1/+3 |
* | Block pointer types are not aggregate types. | Daniel Dunbar | 2009-01-09 | 1 | -1/+4 |
* | Fix crash on null deference when searching for readwrite properties in | Daniel Dunbar | 2009-01-09 | 1 | -13/+15 |
* | Addressed the issue in <rdar://problem/6479085>, where we failed to | Douglas Gregor | 2009-01-09 | 3 | -40/+71 |
* | Adding support for ObjC methods which have c-style | Fariborz Jahanian | 2009-01-09 | 3 | -4/+8 |
* | Invert assertion condition. | Ted Kremenek | 2009-01-09 | 1 | -1/+1 |
* | Add mm_malloc.h, patch by Sam Weinig. | Anders Carlsson | 2009-01-08 | 1 | -0/+59 |
* | Revert my previous, failed attempt to pretty-print anonymous struct/union acc... | Douglas Gregor | 2009-01-08 | 3 | -9/+5 |
* | Fix ObjCInterfaceDecl::Destroy and ObjCProtocolDecl::Destroy to iterate and d... | Ted Kremenek | 2009-01-08 | 1 | -10/+4 |
* | Remove double-insertion of EnumConstantDecls. Thanks to Zhongxing Xu for poin... | Douglas Gregor | 2009-01-08 | 1 | -5/+0 |
* | Unify the code for defining tags in C and C++, so that we always | Douglas Gregor | 2009-01-08 | 10 | -124/+152 |
* | Move FIXME to a better location. | Steve Naroff | 2009-01-08 | 1 | -5/+5 |
* | Removed ObjCContainerDecl::getPropertyMethods()...doesn't belong in the AST. | Steve Naroff | 2009-01-08 | 2 | -73/+53 |
* | Remove redundant method context (now that ObjCMethodDecl isa ScopedDecl). | Steve Naroff | 2009-01-08 | 2 | -7/+8 |
* | This is a large/messy diff that unifies the ObjC AST's with DeclContext. | Steve Naroff | 2009-01-08 | 13 | -169/+136 |
* | Add isSubRegionOf() method to SubRegion. | Zhongxing Xu | 2009-01-08 | 1 | -0/+13 |
* | PTH: Hook up getSpelling() caching in PTHLexer. This results in a nice | Ted Kremenek | 2009-01-08 | 1 | -4/+62 |
* | PTH: | Ted Kremenek | 2009-01-08 | 2 | -7/+41 |
* | Objc's compatibility-alias semantics and code | Fariborz Jahanian | 2009-01-08 | 2 | -1/+10 |
* | Update some doxygen comments to be more rich. Remove StoreManager::GetRegion... | Ted Kremenek | 2009-01-07 | 1 | -16/+16 |
* | Refactor MemRegionManager instance variable into parent class. No functional... | Ted Kremenek | 2009-01-07 | 2 | -8/+6 |
* | Fix PR clang/3291 | Douglas Gregor | 2009-01-07 | 1 | -3/+3 |
* | Fix printing of member references to avoid displaying implicitly-generated me... | Douglas Gregor | 2009-01-07 | 3 | -2/+9 |
* | Don't ICE when messaging on 'super' receiver when class | Fariborz Jahanian | 2009-01-07 | 1 | -3/+6 |
* | Another nasty code gen. bug with trivial fix. Calling class | Fariborz Jahanian | 2009-01-07 | 1 | -1/+3 |
* | Finished semantic analysis of anonymous unions in C++. | Douglas Gregor | 2009-01-07 | 4 | -19/+108 |
* | ObjC AST cleanups/simplifications (phase 1). | Steve Naroff | 2009-01-07 | 1 | -49/+6 |
* | Use DeclContext::getLookupContext wherever necessary to ensure that we look t... | Douglas Gregor | 2009-01-07 | 1 | -2/+3 |
* | When determining whether a variable is a file-scoped variable, check | Douglas Gregor | 2009-01-07 | 1 | -2/+2 |
* | Initial implementation of anonymous unions (and, as a GNU extension, | Douglas Gregor | 2009-01-07 | 8 | -16/+362 |
* | This commit reflects changes to the retain/release checker motivated by my | Ted Kremenek | 2009-01-07 | 1 | -36/+42 |
* | Allow Objective-C entities to be declared within a transparent context | Douglas Gregor | 2009-01-06 | 4 | -8/+11 |
* | SourceManager: Implement "lazy" creation of MemBuffers for source files. | Ted Kremenek | 2009-01-06 | 1 | -5/+22 |
* | Another tweak to handle the MS extensions (<rdar://problem/5956221>). | Steve Naroff | 2009-01-06 | 2 | -0/+2 |
* | Add whitespace to silence the following warning in a Release build: warning: ... | Ted Kremenek | 2009-01-06 | 1 | -1/+1 |
* | Return UnknownVal in RegionStoreManager::getSizeInElements() for unsupported ... | Ted Kremenek | 2009-01-06 | 1 | -0/+1 |