Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | some cleanups on top of David's patch. There are still two | Chris Lattner | 2008-03-30 | 1 | -23/+18 | |
| | | | | | | | | | | | | | remaining open issues I've communicated to him: 1) self can be assigned to, and his patch didn't handle it correctly. 2) CollectObjCIvarTypes is N^2 (because each subclass reprocesses all parent class ivars) and flattens classes. If A derives from B, and both have an int, I'd expect to get { {i32}, i32}, not { i32, i32}. David, please review. llvm-svn: 48970 | |||||
* | Add initial support for objc codegen for methods, ivars, and the | Chris Lattner | 2008-03-30 | 1 | -0/+39 | |
| | | | | | | etoile runtime, patch by David Chisnall! llvm-svn: 48969 | |||||
* | simplify the clang codegen by using the new Builder.CreateStructGEP method. | Chris Lattner | 2008-03-19 | 1 | -20/+15 | |
| | | | | llvm-svn: 48534 | |||||
* | Make a major restructuring of the clang tree: introduce a top-level | Chris Lattner | 2008-03-15 | 1 | -0/+615 | |
lib dir and move all the libraries into it. This follows the main llvm tree, and allows the libraries to be built in parallel. The top level now enforces that all the libs are built before Driver, but we don't care what order the libs are built in. This speeds up parallel builds, particularly incremental ones. llvm-svn: 48402 |