1. a3998bd When we're performing an explicit cast of some sort, don't complain by Douglas Gregor · 14 years ago
  2. da80f74 Improve our handling of cv-qualifiers in Objective-C pointer by Douglas Gregor · 14 years ago
  3. 0943168 Add an assertion, fix a whole bunch of bugs, comment the assertion by John McCall · 14 years ago
  4. 82aa713 Require that the types of the parameters of a block literal are complete. by Douglas Gregor · 14 years ago
  5. dbfd045 Cookie crumbs. by John McCall · 14 years ago
  6. 202422e Actually, that doesn't really work, and anyway we should choose by John McCall · 14 years ago
  7. 6d09da0 Consider conversions of Objective-C pointers to 'id' to be basically of by John McCall · 14 years ago
  8. 9bd1d8d Teach the C++ simple-type-specifier parser and tentative parses about by Douglas Gregor · 14 years ago
  9. 0313f44 Check for ivar being a C++ object before attempting to by Fariborz Jahanian · 14 years ago
  10. fa43239 Put line number on the diagnostic. //rdar: //8550657. by Fariborz Jahanian · 14 years ago
  11. 42499be Use ParseObjCSelectorPiece for parsing getter and setter names in @property declarations. Fixes PR8169. by Anders Carlsson · 14 years ago
  12. 305ac49 Rename a test in preparation for fixing PR8169. by Anders Carlsson · 14 years ago
  13. 8577364 When we have two identifiers in a row in Objective-C, make sure to by Douglas Gregor · 14 years ago
  14. 4088ec0 property reference expression used on lhs of assignment by Fariborz Jahanian · 14 years ago
  15. 4c03398 Removed test case. by Fariborz Jahanian · 14 years ago
  16. 56a965c Reverse r113397 until we decide what to do with by Fariborz Jahanian · 14 years ago
  17. d187795 Fix a crash when overloading id with objc_object*. Radar 8400356. by Fariborz Jahanian · 14 years ago
  18. d7e52b8 "const id<NSFoo> *" instead of "id<NSFoo> const *". by Chris Lattner · 14 years ago
  19. 58f9e13 make clang print types as "const int *" instead of "int const*", by Chris Lattner · 14 years ago
  20. be74740 Patch to allow alternative representation of c++ by Fariborz Jahanian · 14 years ago
  21. f459beb ObjClang++: Allow declaration of block variable in a collection by Fariborz Jahanian · 14 years ago
  22. d527874 suppress annoying textual repetition as 'aka' by Gabor Greif · 14 years ago
  23. 5add754 handle :: in selectors in objc++ mode, rdar://8366474 by Chris Lattner · 14 years ago
  24. 42d0f2a In Sema::AddBuiltinOperatorCandidates, candidate pointer types set can also contain a ObjCObjectPointerType since r111699. by Argyrios Kyrtzidis · 14 years ago
  25. 648d200 Contributed test case for PR7936 by Jean-Daniel Dupas. by Fariborz Jahanian · 14 years ago
  26. 2e2acec patch to support comparison involving by Fariborz Jahanian · 14 years ago
  27. ea16110 Patch to issue warning when colllection expresion's type by Fariborz Jahanian · 14 years ago
  28. 048d03f Fix test to not depend on objc.h header. by Fariborz Jahanian · 14 years ago
  29. 17c6c85 an objective-c++ test for -Wstrict-selector-match (radar 8127244). by Fariborz Jahanian · 14 years ago
  30. aaa3713 Add some more tests for reference binding of Objective-C objects by Douglas Gregor · 14 years ago
  31. 569c316 Allow reference binding of a reference of Objective-C object type to by Douglas Gregor · 14 years ago
  32. 9983d2d Properly pop out of Objective-C method declarations when they are (ill-formedly) by John McCall · 14 years ago
  33. db0bc47 Permit template argument deduction to add qualifiers within ObjC object by John McCall · 14 years ago
  34. 8f70ddb When taking the address of a value of Objective-C object type (e.g., by Douglas Gregor · 14 years ago
  35. 5a18039 Support catching Objective C pointers in C++ under the non-fragile NeXT runtime. by John McCall · 14 years ago
  36. 2f9d874 Extend the "cannot convert from base class pointer to derived class by Douglas Gregor · 14 years ago
  37. 8578981 Improve diagnostic when we fail to pick an overload because it would by Douglas Gregor · 14 years ago
  38. 9fde9c4 tests: Use %clangxx when using driver for C++, in case C++ support is disabled. by Daniel Dunbar · 14 years ago
  39. 1a15dae Fix the recently-added warning about 'typename' and 'template' by Douglas Gregor · 14 years ago
  40. d426662 Make sure result type of objc++ message expression is by Fariborz Jahanian · 14 years ago
  41. 732281d Warn when a 'typename' or a 'template' keyword refers to a by Douglas Gregor · 14 years ago
  42. ddb0ce7 Conversions from Objective C object pointers to bool are "pointer conversions by John McCall · 14 years ago
  43. 0fddb97 Implement support for variable length arrays in C++. VLAs are limited by Douglas Gregor · 14 years ago
  44. d2235f6 Reinstate r104117, Chandler Carruth's change that "[provides] a naming by Douglas Gregor · 14 years ago
  45. 68dd3ee Various small fixes for construction/destruction of Objective-C++ by Douglas Gregor · 14 years ago
  46. 2390a72 Adds support for ObjC++'s GC attribute on declaration of by Fariborz Jahanian · 14 years ago
  47. d425d2b Permit Objective C object pointers to be const_casted. by John McCall · 14 years ago
  48. c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 14 years ago
  49. 3ba6061 Objective-C++ Sema. Fix a bug in instantiation of receivers. by Fariborz Jahanian · 14 years ago
  50. 5d7c29a Rebuild builtin_id * as an ObjCObjectPointerType, where builtin_id is the by John McCall · 15 years ago
  51. c000834 When performing template argument deduction, match Objective C pointers by John McCall · 15 years ago
  52. 79d3f04 Objective-C++ Sema. Support for conversion of a C++ by Fariborz Jahanian · 15 years ago
  53. 65267b2 Objective-C++ Sema - Allow static_cast of one objc pointer to another. by Fariborz Jahanian · 15 years ago
  54. 2f6c550 Allow static_cast to objective-c pointers. Fixes radar 7952457. by Fariborz Jahanian · 15 years ago
  55. a36f3ed Test for my last patch. by Fariborz Jahanian · 15 years ago
  56. 0b7bc8e Diagnose declaration of reference typed ivars. by Fariborz Jahanian · 15 years ago
  57. 9cbfdd2 Implement template instantiation for implicit property references in by Douglas Gregor · 15 years ago
  58. e330354 Implement template instantiation for ObjCPropertyRefExpr. by Douglas Gregor · 15 years ago
  59. f9b9eab Implement template instantiation for value-dependent Objective-C ivar by Douglas Gregor · 15 years ago
  60. be270a0 Implement template instantiation for Objective-C @catch by Douglas Gregor · 15 years ago
  61. 4dfdd1b Template instantiation for @try and @finally (but not @catch, yet). by Douglas Gregor · 15 years ago
  62. c3203e7 Template instantiation for the Objective-C "fast enumeration" statement, i.e., by Douglas Gregor · 15 years ago
  63. 8fdc13a Template instantiation for Objective-C++ @synchronized statements. by Douglas Gregor · 15 years ago
  64. d1377b2 Implement template instantiation for Objective-C++ @throw statements. by Douglas Gregor · 15 years ago
  65. 92e986e Implement template instantiation for Objective-C++ message sends. We by Douglas Gregor · 15 years ago
  66. a41a8c5 Whenever we complain about a failed initialization of a function or by Douglas Gregor · 15 years ago
  67. 688fc9b Switch the initialization of Objective-C message parameters (as occurs by Douglas Gregor · 15 years ago
  68. 6aa14d8 Implement parsing for message sends in Objective-C++. Message sends in by Douglas Gregor · 15 years ago
  69. 2725ca8 Rework the Parser-Sema interaction for Objective-C message by Douglas Gregor · 15 years ago
  70. d7174f2 More tests for Objective-C-related name lookup weirdness. Yes, it's by Douglas Gregor · 15 years ago
  71. 7683a3f Add another test case for r101029, which verifies that we now by Douglas Gregor · 15 years ago
  72. 78713d8 When upgrading an Objective-C class from a forward declaration to a by Douglas Gregor · 15 years ago
  73. d4eea83 Improve diagnostics when we fail to convert from a source type to a by Douglas Gregor · 15 years ago
  74. ee9ca69 objective-c++ must take into account qualifiers when by Fariborz Jahanian · 15 years ago
  75. 7c2342d When pretty-printing tag types, only print the tag if we're in C (and by John McCall · 15 years ago
  76. 3c3aaf9 Only parse C++0x attribute specifiers in declarators when in C++0x by Douglas Gregor · 15 years ago
  77. 36262b8 Implement C++ name lookup for instance variables of Objective-C classes by Douglas Gregor · 15 years ago
  78. c5e77d5 Make Sema::ActOnClassMessage robust when name lookup for the receiver by Douglas Gregor · 15 years ago
  79. 72a8659 Patch to allow reinterpret_cast on objective-c pointers. by Fariborz Jahanian · 15 years ago
  80. f7c43fd Also allow cast of block pointer type to by Fariborz Jahanian · 15 years ago
  81. b351a7d In objective-c++ land, a block pointer is another object pointer. by Fariborz Jahanian · 15 years ago
  82. 83b7b31 Allow conversion of pointer to an objective-c pointer to by Fariborz Jahanian · 15 years ago
  83. aa03731 Switch initialization of parameters in a call over to by Douglas Gregor · 15 years ago
  84. 51874dd Allow comparison of 'void *' with function pointer by Fariborz Jahanian · 15 years ago
  85. cfdc81a Initialization improvements: addition of string initialization and a few by Eli Friedman · 15 years ago
  86. adcfab1 Allow pointer convesion of an objective-c pointer to by Fariborz Jahanian · 15 years ago
  87. dd69aae Diagnose property of reference type as unsupported instead of crashing for now. by Fariborz Jahanian · 15 years ago
  88. a572887 Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 15 years ago
  89. 854a4eb Make tests use the new clang -cc1 flag. by Fariborz Jahanian · 15 years ago
  90. 3b27f1a Patch to allow C-style cast from 'void *' to block pointer type. by Fariborz Jahanian · 15 years ago
  91. 1f7711d Consider conversion of objective-c pointer to 'bool' a by Fariborz Jahanian · 15 years ago
  92. 7e1848d Give the "cannot pass object of non-POD type 'class C' through variadic constructor; call will abort at runtime" warning a -W flag (non-pod-varargs) and default it being an error by default. There is no good reason to allow users to get bitten by this sort of thing by default. by Chris Lattner · 15 years ago
  93. 737061f Patch to fix a crash trying to access a category name in by Fariborz Jahanian · 15 years ago
  94. 505c882 No need to add -x objecitve-c++ by Fariborz Jahanian · 15 years ago
  95. 5501636 Add support for finding composite type of twp objective-c pointers by Fariborz Jahanian · 15 years ago
  96. 92ef5d7 More detailed analysis of typecast to an objective-c pointer by Fariborz Jahanian · 15 years ago
  97. 0cedfbd Patch to allow matching 0 with an objective-c pointer type by Fariborz Jahanian · 15 years ago
  98. ebea307 Patch to allow cstyle cast of objective-c pointers in objective-c++ by Fariborz Jahanian · 15 years ago
  99. d739021 Switch XFAIL format to match LLVM. by Daniel Dunbar · 15 years ago
  100. 4029ac0 this test crashes, disable it harder. by Chris Lattner · 15 years ago