Age | Commit message (Expand) | Author |
2013-02-07 | Retain all hidden methods in the global method pool, because they may become ... | Douglas Gregor |
2013-01-21 | Eliminate Sema::CompareProperties(), which was walking over a pile of | Douglas Gregor |
2013-01-21 | Eliminate the oddly-named Sema::ComparePropertiesInBaseAndSuper, which | Douglas Gregor |
2013-01-18 | When checking the parameter types of an Objective-C method, don't | Douglas Gregor |
2013-01-17 | Treat hidden Objective-C protocol definitions as if they were | Douglas Gregor |
2013-01-16 | Rework the traversal of Objective-C categories and extensions to | Douglas Gregor |
2013-01-16 | Teach global selector lookup to ignore hidden methods, which occur | Douglas Gregor |
2013-01-15 | When checking availability attributes for consistency between an | Douglas Gregor |
2013-01-07 | objective-C: when searching for declarations in protocol | Fariborz Jahanian |
2012-12-11 | Don't complain about incomplete implementations for methods that are | Douglas Gregor |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth |
2012-11-17 | objective-C: Do not issue deprecated warning about implementation | Fariborz Jahanian |
2012-10-23 | Objective-C: check that when a category method is being implemented, | Fariborz Jahanian |
2012-10-19 | Allow objc_requires_super to be used to check class methods as well. | Jordan Rose |
2012-10-18 | From Vassil Vassilev: enable Sema to deal with multiple ExternalSemaSources. | Axel Naumann |
2012-10-10 | Rename ObjCMethodDecl::isSynthesized to isPropertyAccessor. | Jordan Rose |
2012-09-13 | remove duplicate code. | Fariborz Jahanian |
2012-09-13 | Move back the stuff about missing ownership attribute warning | Fariborz Jahanian |
2012-09-13 | Move no explicit ownership warning to SemaType.cpp. | Fariborz Jahanian |
2012-09-12 | objective-C arc: don't issue no explicit ownership warning when | Fariborz Jahanian |
2012-09-10 | More tweaking and test cases for call to super | Fariborz Jahanian |
2012-09-07 | objective-C: introduce __attribute((objc_requires_super)) on method | Fariborz Jahanian |
2012-09-06 | Dont cast away const needlessly. Found by gcc48 -Wcast-qual. | Roman Divacky |
2012-08-30 | objective-C ARC: under -Wexplicit-ownership-type diagnose those | Fariborz Jahanian |
2012-08-24 | objective-C: Do not warn if align attribute on method | Fariborz Jahanian |
2012-08-08 | objective-C: refactor/simplify parsing of delayed | Fariborz Jahanian |
2012-08-08 | PR13558: Fix typo 'compatiblity'. Thinking of the children. Apparently. | Richard Smith |
2012-08-01 | Fix an assertion failure instantiating a constexpr function from within a -de... | Eli Friedman |
2012-07-30 | objective-c arc: ARC IRGen correctly assumes result | Fariborz Jahanian |
2012-07-13 | Attaching comments to declarations during parsing: handle more Objective-C de... | Dmitri Gribenko |
2012-07-11 | Enable comment parsing and semantic analysis to emit diagnostics. A few | Dmitri Gribenko |
2012-07-05 | objective-c: don't involve properties when checking | Fariborz Jahanian |
2012-07-03 | Remove a redundant assignment to the FDecl variable from *inside* it's | Chandler Carruth |
2012-07-02 | objective-c: just as we have done for method definitions, | Fariborz Jahanian |
2012-06-20 | Restructure how the driver communicates information about the | John McCall |
2012-06-14 | Still more Doxygen documentation fixes: | James Dennett |
2012-06-06 | Revert Decl's iterators back to pointer value_type rather than reference valu... | David Blaikie |
2012-05-27 | Use the SelectorSet typedef more widely throughout Sema. | Benjamin Kramer |
2012-05-17 | A selector match between two Objective-C methods does *not* guarantee | Douglas Gregor |
2012-05-17 | In the override search for Objective-C methods, protect against ASTs that hav... | Douglas Gregor |
2012-05-09 | [AST/libclang] Speed up clang_getOverriddenCursors() considerably by reservin... | Argyrios Kyrtzidis |
2012-05-04 | Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType() | Douglas Gregor |
2012-05-03 | Do not keep track of the set of visited Objective-C containers when | Douglas Gregor |
2012-05-01 | Eliminate Sema::CompareMethodParamsInBaseAndSuper() entirely, by | Douglas Gregor |
2012-05-01 | The semantic checking that verifies whether an Objective-C method | Douglas Gregor |
2012-04-30 | Remove the ref/value inconsistency in filter_decl_iterator. | David Blaikie |
2012-04-06 | Added a new attribute, objc_root_class, which informs the compiler when a roo... | Patrick Beard |
2012-04-05 | objective-c: Don't warn when a category does not implement a method | Fariborz Jahanian |
2012-03-23 | Make sure we don't accept an @interface inside another objc container | Argyrios Kyrtzidis |
2012-03-13 | Fix PR10447: lazily building name lookup tables for DeclContexts was broken. | Richard Smith |