- f50d1ac [ObjC] Messages to 'self' in class methods that return 'instancetype' should by Alex Lorenz · 7 years ago
- fa98390 NFC: Remove the ObjC1/ObjC2 distinction from clang (and related projects) by Erik Pilkington · 7 years ago
- 4257857 [Sema][ObjC] Infer availability of +new from availability of -init. by Erik Pilkington · 7 years ago
- b111da1 [ObjC] Error out when using forward-declared protocol in a @protocol expression by Alex Lorenz · 7 years ago
- 1c301dc Port getLocEnd -> getEndLoc by Stephen Kelly · 7 years ago
- f2ceec4 Port getLocStart -> getBeginLoc by Stephen Kelly · 7 years ago
- 6907ce2 Remove trailing space by Fangrui Song · 7 years ago
- 66d405d [Sema][ObjC] Do not propagate the nullability specifier on the receiver by Akira Hatanaka · 7 years ago
- 1ef7554 DR1687: When overload resolution selects a built-in operator, implicit by Richard Smith · 7 years ago
- 9fc8faf Remove \brief commands from doxygen comments. by Adrian Prantl · 7 years ago
- 2a8c18d Fix typos in clang by Alexander Kornienko · 7 years ago
- 7d89ce9 [Sema] Make deprecation fix-it replace all multi-parameter ObjC method slots. by Volodymyr Sapsai · 8 years ago
- 627586b Add an option to disable tail-call optimization for escaping blocks. by Akira Hatanaka · 8 years ago
- a503855 Track in the AST whether the operand to a UnaryOperator can overflow and then use that logic when evaluating constant expressions and emitting codegen. by Aaron Ballman · 8 years ago
- f3b3ccd Silence a bunch of implicit fallthrough warnings by Adrian Prantl · 8 years ago
- 49370ac [ObjC] Boxed strings should use the nullability from stringWithUTF8String's return type by Alex Lorenz · 8 years ago
- cc7171a [Sema][ObjC] Preserve syntactic sugar when removing by Akira Hatanaka · 8 years ago
- fa1930c Look through parentheses. by Akira Hatanaka · 8 years ago
- d9f1284 [ObjC] Add a -Wobjc-messaging-id warning by Alex Lorenz · 8 years ago
- 2cd7e86 [Sema][ObjC] Clean up possible null dereference. by Akira Hatanaka · 8 years ago
- 19ae6dc ObjCBoxedExpr can't be evaluated by the constant expression evaluator. by Nick Lewycky · 8 years ago
- ad51539 [Sema][ObjC] Check whether a variable has a definition, rather than by Akira Hatanaka · 8 years ago
- 11352a8 [Objective-C] Fix "weak-unavailable" warning with -fobjc-weak by Brian Kelley · 9 years ago
- cafd912 [Objective-C] Fix "repeated use of weak" warning with -fobjc-weak by Brian Kelley · 9 years ago
- 5ffe4e1 [ObjC][ARC] Avoid -Warc-performSelector-leaks for performSelector variations by Alex Lorenz · 9 years ago
- 3e54835 [ObjC][Sema] Avoid ARC performSelector error for 'self' selector by Alex Lorenz · 9 years ago
- 5e895cf [ObjC][Sema] Avoid warning about a call to an instance method on an by Alex Lorenz · 9 years ago
- 0e23c61 [Sema][ObjC] Warn about 'performSelector' calls with selectors by Alex Lorenz · 9 years ago
- b3a2d04 Sema: use PropertyDecl for property selector by Saleem Abdulrasool · 9 years ago
- 51c0128 [Sema][ObjC] perform-selector ARC check should see @selector in parens by Alex Lorenz · 9 years ago
- 01d9698 More diagnostic name fixups: w_ -> warn_, warning_ -> warn_, not_ -> note_. by Richard Smith · 9 years ago
- f881267 Mass-rename the handful of error_* diagnostics to err_*. by Richard Smith · 9 years ago
- 3d40284 Add an assert to further check the invariant that a null pointer by Chandler Carruth · 9 years ago
- 52d07de Fix typos in comments. by George Burgess IV · 9 years ago
- 2b2b1a9 ObjC Class Property: diagnostics when accessing a class property using instance. by Manman Ren · 9 years ago
- 4a05bb8 Re-commit "[Temporary] Add an ExprWithCleanups for each C++ MaterializeTemporaryExpr." by Tim Shen · 9 years ago
- 17b3dee Revert "[Temporary] Add an ExprWithCleanups for each C++ MaterializeTemporaryExpr." by Tim Shen · 9 years ago
- f120a7b [Temporary] Add an ExprWithCleanups for each C++ MaterializeTemporaryExpr. by Tim Shen · 9 years ago
- 7ed4f98 [ObjC kindof] Use type bound to filter out the candidate methods. by Manman Ren · 9 years ago
- d2a3cd7 NFC: simplify code in BuildInstanceMessage. by Manman Ren · 9 years ago
- f5c53b8 [Sema] More changes to fix Objective-C fallout from r249995. by Bob Wilson · 10 years ago
- 1ced509 Fix remaining Clang-tidy readability-redundant-control-flow warnings; other minor fixes. by Eugene Zelenko · 10 years ago
- 5b78640 Class Property: class property and instance property can have the same name. by Manman Ren · 10 years ago
- efdccaa OpaquePtr: Use nullptr construction for ParsedType OpaquePtr typedef by David Blaikie · 10 years ago
- 60bc972 [Sema] Suppress diags in overload resolution. by George Burgess IV · 10 years ago
- 9a17c85 Properly track that a character literal is UTF-8, and pretty print the prefix properly. by Aaron Ballman · 10 years ago
- 6c2f06b [TrailingObjects] Convert classes in ExprObjC.h by James Y Knight · 10 years ago
- d4336e0 [Sema] ArrayRef-ize BuildObjCDictionaryLiteral. NFC by Craig Topper · 10 years ago
- 883dd33 [Sema] ArrayRef-ize ParseObjCStringLiteral and CodeCompleteObjCProtocolReferences. NFC by Craig Topper · 10 years ago
- db0ac55 Split RequireCompleteType into a function that actually requires that the type by Richard Smith · 10 years ago
- 07fa176 Use Sema::getLocForEndOfToken instead of Preprocessor::getLocForEndOfToken. NFC by Craig Topper · 10 years ago
- acf4fd3 Stop back-patching 'readonly' Objective-C properties with 'readwrite' ones. by Douglas Gregor · 10 years ago
- c6af8c6 Refine r251469 to give better (and more localizable) diagnostics by John McCall · 10 years ago
- 7e9fd56 Be slightly more permissive when checking for type-erased blocks. by Bob Wilson · 10 years ago
- 3e839de Silence a "not all control paths return a value" warning from MSVC. Should also silence a -Wreturn-type warning. NFC intended. by Aaron Ballman · 10 years ago
- b7d8563 Cleanup ObjCInterfaceDecl lookup for ObjC literals by Alex Denisov · 10 years ago
- ab209d8 Implement the Objective-C __kindof type qualifier. by Douglas Gregor · 10 years ago
- e83b956 Substitute type arguments into uses of Objective-C interface members. by Douglas Gregor · 10 years ago
- e9d95f1 Handle Objective-C type arguments. by Douglas Gregor · 10 years ago
- 85f3f95 Parsing, semantic analysis, and AST for Objective-C type parameters. by Douglas Gregor · 10 years ago
- fde6495 [ObjC] Add NSValue support for objc_boxed_expressions by Alex Denisov · 10 years ago
- ab9db51 Revert r240270 ("Fixed/added namespace ending comments using clang-tidy"). by Alexander Kornienko · 10 years ago
- 3d9d929 Fixed/added namespace ending comments using clang-tidy. NFC by Alexander Kornienko · 10 years ago
- 2a20bd1 Introduced pragmas for audited nullability regions. by Douglas Gregor · 10 years ago
- 813a066 Extend type nullability qualifiers for Objective-C. by Douglas Gregor · 10 years ago
- 890803f [Objective-C Sema]This patch fixes the warning when clang issues by Fariborz Jahanian · 10 years ago
- 27aa9b4 [Objective-C Sema] Fixes a typo which did not allow by Fariborz Jahanian · 10 years ago
- 696c887 [Objective-C Sema] It is permissable to bridge cast to 'id' by Fariborz Jahanian · 10 years ago
- 12c8f65 [Modules] Make Sema's map of referenced selectors have a deterministic by Chandler Carruth · 11 years ago
- 2954c67e [Objective-C Sema]. Remove -Wreceiver-is-weak warning. by Fariborz Jahanian · 11 years ago
- af6b3f8 Recognize objc_bridge(id) on bridged casts to CF types. by John McCall · 11 years ago
- e1d882c New ObjC warning: circular containers. by Alex Denisov · 11 years ago
- 443aa4b Allow (Object *)kMyGlobalCFObj casts without bridging by Ben Langmuir · 11 years ago
- e36748a Fix crash when clang tries to build NSNumber literal after forward declaration by Alex Denisov · 11 years ago
- 86dd456 Patch fixes PR21932 crash on invalid code. Using by Fariborz Jahanian · 11 years ago
- 2e0c8f7 Address review feedback on r221933. by Nico Weber · 11 years ago
- c9e266b [Objective-C]. This patch extends objc_bridge attribute to support objc_bridge(id). by Fariborz Jahanian · 11 years ago
- 30f1708 Fix the indentation: Nesting level does not match indentation (CID 1254863) by Sylvestre Ledru · 11 years ago
- c62d16f Objective-C. Fixes a regression caused by implementation by Fariborz Jahanian · 11 years ago
- 05e77f8 [Objective-C Sema]. Issue availability/deprecated warning when by Fariborz Jahanian · 11 years ago
- 9ad94aa Objective-C. revert patch for rdar://17554063. by Fariborz Jahanian · 11 years ago
- 214567c [Objective-C]. revert r220740,r220727 by Fariborz Jahanian · 11 years ago
- 992bdf1 Objective-C ARC [qoi]. Issue diagnostic if __bridge casting by Fariborz Jahanian · 11 years ago
- 89c881b Pass around CorrectionCandidateCallbacks as unique_ptrs so by Kaelyn Takata · 11 years ago
- fba4fe6 Objective-C. Under a special flag, -Wcstring-format-directive, by Fariborz Jahanian · 11 years ago
- 6485fe4 Objective-C. Under a special flag, -Wcstring-format-directive, by Fariborz Jahanian · 11 years ago
- 8c2a2a0 Use llvm::makeArrayRef instead of explicitly calling ArrayRef constructor and mentioning the type. This works now that we have a conversion from ArrayRef<T*> to ArrayRef<const T*>. by Craig Topper · 11 years ago
- 4229228 Objective-C. Allow [super initialize] in an +initialize by Fariborz Jahanian · 11 years ago
- 4bf437e Objective-C. Warn when @encode'ing provides an incomplete by Fariborz Jahanian · 11 years ago
- e8b4550 Objective-C. Update my previous patch to not warn if by Fariborz Jahanian · 11 years ago
- 78e9deb Objective-C. Warn if user has made explicit call by Fariborz Jahanian · 11 years ago
- 19c2e2f Objective-C [qoi]. Provide fix-it hint when sending by Fariborz Jahanian · 11 years ago
- 4eda2c0 Objective-C. Do not warn if user is using property-dox syntax to name a by Fariborz Jahanian · 11 years ago
- d288fad Objective-C. Handle case of multiple class methods by Fariborz Jahanian · 11 years ago
- 0ded424 Objective-C. Minor refactoring of my last patch. // rdar://16808765 by Fariborz Jahanian · 11 years ago
- 30ae8d4 Objective-C. This patch is to resolve the method used in method by Fariborz Jahanian · 11 years ago
- 5ab8750 Objective-C [qoi]. Patch to not do Fix-It for fixing by Fariborz Jahanian · 11 years ago
- 0b1d288 Objective-C [qoi]. Issue warning and fixit if property-dot syntax by Fariborz Jahanian · 11 years ago
- bf09db4 Objective-C. Minor refactoring of my previous patch. rdar://17554063 by Fariborz Jahanian · 11 years ago
- 495bc3f Objective-C ARC. Use of non-retain/autorelease API by Fariborz Jahanian · 11 years ago