| Commit message (Expand) | Author | Age | Files | Lines |
* | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 2019-01-19 | 1 | -4/+3 |
* | Remove trailing space | Fangrui Song | 2018-07-30 | 1 | -7/+7 |
* | Remove \brief commands from doxygen comments. | Adrian Prantl | 2018-05-09 | 1 | -1/+1 |
* | Use instance_properties instead of properties. NFC. | Manman Ren | 2016-01-26 | 1 | -1/+1 |
* | Stop back-patching 'readonly' Objective-C properties with 'readwrite' ones. | Douglas Gregor | 2015-11-03 | 1 | -22/+4 |
* | [C++11] Use 'nullptr'. | Craig Topper | 2014-05-07 | 1 | -2/+3 |
* | remove a bunch of unused private methods | Nuno Lopes | 2014-03-23 | 1 | -8/+0 |
* | [C++11] Replacing ObjCInterfaceDecl iterators visible_extensions_begin() and ... | Aaron Ballman | 2014-03-13 | 1 | -6/+2 |
* | Renaming the recently-created (r203830) props() range API to properties() for... | Aaron Ballman | 2014-03-13 | 1 | -1/+1 |
* | [C++11] Replacing ObjCContainerDecl iterators prop_begin() and prop_end() wit... | Aaron Ballman | 2014-03-13 | 1 | -6/+4 |
* | Rework the traversal of Objective-C categories and extensions to | Douglas Gregor | 2013-01-16 | 1 | -4/+6 |
* | [objc] For the ARC error that is emitted when a synthesized property implemen... | Argyrios Kyrtzidis | 2012-12-12 | 1 | -6/+12 |
* | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -1/+1 |
* | s/tranform/transform/ | Benjamin Kramer | 2012-11-14 | 1 | -1/+1 |
* | Revert Decl's iterators back to pointer value_type rather than reference valu... | David Blaikie | 2012-06-06 | 1 | -2/+2 |
* | [arcmt] Remove an unused -autorelease, without failing with error, for this | Argyrios Kyrtzidis | 2012-05-23 | 1 | -10/+1 |
* | Remove the ref/value inconsistency in filter_decl_iterator. | David Blaikie | 2012-04-30 | 1 | -2/+2 |
* | [arcmt] Fix a bug where a property in a class extension, that did not exist | Argyrios Kyrtzidis | 2012-03-29 | 1 | -3/+8 |
* | arg migrator: change all "assign" of object properties | Fariborz Jahanian | 2012-01-21 | 1 | -9/+11 |
* | arc migrator: replace "retain" attribute with "strong" | Fariborz Jahanian | 2012-01-20 | 1 | -4/+6 |
* | [arcmt] Integrate GC __weak into property attributes even when we don't have | Argyrios Kyrtzidis | 2011-11-28 | 1 | -46/+2 |
* | [arcmt] Don't add __weak if there is already a GC __weak and make sure to clear | Argyrios Kyrtzidis | 2011-11-28 | 1 | -6/+12 |
* | [arcmt] Take into account that all properties are strong-by-default now and f... | Argyrios Kyrtzidis | 2011-11-08 | 1 | -42/+7 |
* | [arcmt] Now that readonly properties are strong-by-default, do not add redund... | Argyrios Kyrtzidis | 2011-11-08 | 1 | -1/+1 |
* | [arcmt] Now that properties are strong by default, avoid adding redundant '(s... | Argyrios Kyrtzidis | 2011-11-08 | 1 | -2/+4 |
* | [arcmt] In GC, handle (assign) @properties. | Argyrios Kyrtzidis | 2011-11-07 | 1 | -103/+41 |
* | [arcmt] Map property decls to their GC attributes. | Argyrios Kyrtzidis | 2011-11-07 | 1 | -2/+5 |
* | [arcmt] Make PropertiesRewriter::getPropertyType return the unqualified type. | Argyrios Kyrtzidis | 2011-11-06 | 1 | -4/+3 |
* | [arcmt] Collect all the places where GC attributes __strong/__weak occur. | Argyrios Kyrtzidis | 2011-11-06 | 1 | -1/+1 |
* | [arcmt] Refactor PropertiesRewriter to use MigrationContext. | Argyrios Kyrtzidis | 2011-11-06 | 1 | -2/+4 |
* | [arcmt] Rewrite attributes in extensions as well. rdar://9992142 | Argyrios Kyrtzidis | 2011-10-18 | 1 | -17/+83 |
* | [arcmt] In ARC default for properties is 'strong' so just remove a 'retain' i... | Argyrios Kyrtzidis | 2011-10-17 | 1 | -3/+37 |
* | Rename the ARC cast kinds to start with "ARC". | John McCall | 2011-09-10 | 1 | -1/+1 |
* | [arcmt] When checking whether properties needs to be strong or not, take into... | Argyrios Kyrtzidis | 2011-08-10 | 1 | -0/+5 |
* | [arcmt] More automatic transformations and safety improvements; rdar://9615812 : | Argyrios Kyrtzidis | 2011-07-27 | 1 | -10/+73 |
* | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -9/+8 |
* | [arcmt] Add weak/unsafe_unretained for "@property (readonly)" when we are @sy... | Argyrios Kyrtzidis | 2011-07-13 | 1 | -1/+1 |
* | [arcmt] For properties rewrite 'assign' -> 'weak or unsafe_unretained', 'reta... | Argyrios Kyrtzidis | 2011-07-13 | 1 | -133/+237 |
* | [arcmt] Before applying '__weak' check whether the objc class is annotated wi... | Argyrios Kyrtzidis | 2011-07-12 | 1 | -2/+2 |
* | Change the driver's logic about Objective-C runtimes: abstract out a | John McCall | 2011-07-06 | 1 | -2/+2 |
* | Rename objc_lifetime -> objc_ownership, and modify diagnostics to talk about ... | Argyrios Kyrtzidis | 2011-06-24 | 1 | -4/+4 |
* | [arcmt] Break apart Transforms.cpp. | Argyrios Kyrtzidis | 2011-06-21 | 1 | -0/+260 |