1. 3393f81 Don't warn if objc method param types in declaration and by Fariborz Jahanian · 15 years ago
  2. cc5306a Improve on diagnosing type mismatches because of by Fariborz Jahanian · 15 years ago
  3. 76d69bb CastsAwayConstness shouldn't care if member pointers point into different classes. Fixes PR5545. by Sebastian Redl · 15 years ago
  4. 3b49aca Code completion for Objective-C class names after @interface, by Douglas Gregor · 15 years ago
  5. c72af57 Update index tests for r89203. by Benjamin Kramer · 15 years ago
  6. 186696b Predefine __INTMAX_WIDTH__ for the future parameterization of INTMAX macros in by Ken Dyck · 15 years ago
  7. 083128f Code completion after @property, providing the names of forward-declared properties by Douglas Gregor · 15 years ago
  8. f9a7c18 Rename code-completion test to actually make sense by Douglas Gregor · 15 years ago
  9. 55385fe Code completion for Objective-C properly lists by Douglas Gregor · 15 years ago
  10. 88a4a62 Be sure to set visibility for ZTI symbols for classes from the class. by Mike Stump · 15 years ago
  11. 066b983 Make _ZTI symbols hidden. This speeds up the dynamic linker. by Mike Stump · 15 years ago
  12. 7ba107a Incremental progress on using declarations. Split UnresolvedUsingDecl into by John McCall · 15 years ago
  13. 1d5fdf3 Add special clang_getCursor() support for @class. Handles <rdar://problem/7383421>. by Ted Kremenek · 15 years ago
  14. 95ac655 Code completion for member accesses that involve Objective-C properties and instance variables by Douglas Gregor · 15 years ago
  15. f43fb72 PR5520: Make sure to check whether the base type is complete before looking for by Eli Friedman · 15 years ago
  16. 2710c41 Fix one last gotcha with typeid. by Mike Stump · 15 years ago
  17. f74a419 Finish code completion for Objective-C message sends by Douglas Gregor · 15 years ago
  18. ae9b2be Add rtti support for arrays, functiond without prototypes, vectors and enums. by Mike Stump · 15 years ago
  19. 36ecb04 Refactor code-completion support for message sends, collecting the by Douglas Gregor · 15 years ago
  20. 64989f0 Add rtti info for function prototypes and refactor. This allows by Mike Stump · 15 years ago
  21. 269f8bc This patch finalizes implementatin of weak_import by Fariborz Jahanian · 15 years ago
  22. 5fae856 Add rtti support for pointer to data members. by Mike Stump · 15 years ago
  23. d8aefab Drop unnecessary #include. by Daniel Dunbar · 15 years ago
  24. fff9403 Remove unnecessary &&s. by Daniel Dunbar · 15 years ago
  25. 61c3801 Add rtti support for non-member pointers. WIP. by Mike Stump · 15 years ago
  26. 1c6da17 Add c-index-test mode "-test-file-scan", which scans a source file and calls clang_getCursor() on every character. by Ted Kremenek · 15 years ago
  27. 7324d6d Fix test case. by Ted Kremenek · 15 years ago
  28. 5e530af Added block type introspection support. by David Chisnall · 15 years ago
  29. 0196ce4 Rename test. by Ted Kremenek · 15 years ago
  30. aa069ae Undo previous test fix. -split-phi-edges now disables automatically when the by Jakob Stoklund Olesen · 15 years ago
  31. b088756 Replace (-INT8_C(128)), which uses an illegally out-of-range argument for by Ken Dyck · 15 years ago
  32. f5d9c93 Clean up c-index-test command line usage a bit by requiring a "-test-load-tu" option when testing clang_loadTranslationUnit(). Running c-index-test without the correct arguments now also prints a useful summary of its correct usage. by Ted Kremenek · 15 years ago
  33. 4a2614e Adjust format attribute index for implicit object arguments. Fixes PR5521. by Sebastian Redl · 15 years ago
  34. 24a069f Implement code completion for Objective-C message sends to "super". by Douglas Gregor · 15 years ago
  35. 58beed9 Fix PR5531. by Anders Carlsson · 15 years ago
  36. 9630eb6 Augment code-completion results to provide argument names and by Douglas Gregor · 15 years ago
  37. 8163841 Use the INTn_C integer constant macros to generate limit constants with correct by Ken Dyck · 15 years ago
  38. 947e00d Make test header independent so it doesn't fail on freebsd. I hope this doesn't by Benjamin Kramer · 15 years ago
  39. 6ab25f4 Remove unnecessary parens around the bodies of integer constant macros. C99 by Ken Dyck · 15 years ago
  40. 2ca2429 ... and add back a few more triple forces. by Daniel Dunbar · 15 years ago
  41. 8ee15dc Use clang to run tests which include headers from the system. by Daniel Dunbar · 15 years ago
  42. d71b641 Add some -triples I was a little too liberal in removing. by Daniel Dunbar · 15 years ago
  43. 3332646 Merge several visibility tests into hidden-visibility.m, and check .ll output by Daniel Dunbar · 15 years ago
  44. ca74ae7 Use -fblocks and -fobjc-nonfragile-abi when that is what is being tested, instead of forcing the triple. by Daniel Dunbar · 15 years ago
  45. 4985e3e Add PreVisitReturn to Malloc checker. Now we can recognize returned memory by Zhongxing Xu · 15 years ago
  46. 23afaad Don't #include <stdio.h> when tests don't need it, or use clang instead of clang-cc when they do. by Daniel Dunbar · 15 years ago
  47. b1295da Remove some redundant tests. by Daniel Dunbar · 15 years ago
  48. 48270a3 Commit this random test case. by John McCall · 15 years ago
  49. 9e5cc6b Add -fblocks, -stack-protector, and -fobjc-nonfragile-abi defaulting to driver, by Daniel Dunbar · 15 years ago
  50. 243fde9 Add EvalEndPath interface to Checker. Now we can check memory leaked at the by Zhongxing Xu · 15 years ago
  51. c5a97ec Move -fnext-runtime defaulting to driver (and change clang-cc default to by Daniel Dunbar · 15 years ago
  52. 1f95e65 Move char-is-signed defaulting to driver, instead of using by Daniel Dunbar · 15 years ago
  53. 48cebf2 Add newline at the end of the file. by Ted Kremenek · 15 years ago
  54. 48c32a7 Implement template instantiation for using directives, which is dead simple. by Douglas Gregor · 15 years ago
  55. 9298cfc Have clang_getCursorSource() return NULL when the source location is invalid or refers to a built-in buffer. Implements <rdar://problem/7296243>. by Ted Kremenek · 15 years ago
  56. 03c5705 Require the object type of a member access expression ("." or "->") to by Douglas Gregor · 15 years ago
  57. 9f853df Unify the way destructor epilogues are generated for synthesized and regular destructors. Also fix PR5529. by Anders Carlsson · 15 years ago
  58. 21f5d5d Add typeinfo support for T* and const T* for all builtin types T. by Mike Stump · 15 years ago
  59. c6ea5d4 Add test to verify that the analyzer plist output is what we expect. by Ted Kremenek · 15 years ago
  60. ea2c0b5 Add typeid for the builtin types. WIP. by Mike Stump · 15 years ago
  61. 936d2a8 Fix tests after enabling -split-phi-edges. by Jakob Stoklund Olesen · 15 years ago
  62. 16fea9b PR5526: Make sure to set the right cast kinds for the inserted implicit casts. by Eli Friedman · 15 years ago
  63. db519a4 Ensure we peer through () when handling typeid(*p). by Mike Stump · 15 years ago
  64. a661bee Remove extra space in warn_maynot_respond diagnostic. Fixes <rdar://problem/7364274>. by Ted Kremenek · 15 years ago
  65. c888f48 Note why this doesn't yet work. by Mike Stump · 15 years ago
  66. f4a08d0 Trim spacing. by Mike Stump · 15 years ago
  67. 4d26b43 Fix up EmitMemberInitializer to handle many more cases. by Eli Friedman · 15 years ago
  68. 39f36e3 Testcase for dynamic_cast. by Mike Stump · 15 years ago
  69. 1db5345 Make member initializers for union members work correctly. by Eli Friedman · 15 years ago
  70. bbd755a Update test, I don't know why this changed but seems innocuous. by Daniel Dunbar · 15 years ago
  71. 6d10ac9 Implement a few more cases for copy constructor synthesis. by Eli Friedman · 15 years ago
  72. a439e6f Repair broken FindCompositePointerType. Correct early termination condition. Get CVR qualifiers from canonical types. Traverse collected qualifiers in reverse order on rebuilding the pointer, so that we don't swap inner and outer qualifiers. That last one fixes PR5509. by Sebastian Redl · 15 years ago
  73. 912b662 Fix members to be public. by Mike Stump · 15 years ago
  74. 333dfe9 Make bots happy. by Mike Stump · 15 years ago
  75. 1a3c75f Fix PR5488: special-case the overloaded arrow operator so that we don't try to by Eli Friedman · 15 years ago
  76. 63e963c Handle case of missing '@end' in implementation context by Fariborz Jahanian · 15 years ago
  77. 2a70e94 Fix spelling for target triplet. by Mike Stump · 15 years ago
  78. eef22ef Parameterize the constant-generating macros in stdint.h with new built-in by Ken Dyck · 15 years ago
  79. 083e306 Try and fix buildbot issue. by Mike Stump · 15 years ago
  80. 8dfa2b3 Fix a couple of cases where we weren't generating the right kind of call by Eli Friedman · 15 years ago
  81. eaea8c4 Implement two-argument form of delete operator. by Eli Friedman · 15 years ago
  82. 5e6214b Fix test on Linux. by Eli Friedman · 15 years ago
  83. 7f92f03 Add constant evaluation for comma operator with floating-point operand. Fixes by Eli Friedman · 15 years ago
  84. 1f126bd Deallocation functions must also be static. by Anders Carlsson · 15 years ago
  85. 67bf2e7 allocation functions are always static. by Anders Carlsson · 15 years ago
  86. 333b2a7 Fix linux buildbots. by Mike Stump · 15 years ago
  87. f549e89 Finish off zero check for typeid(*p) so that it will do a __cxa_bad_typeid. by Mike Stump · 15 years ago
  88. 5072430 If we find a deallocation function in the class scope, but it is a placement function we should not look for a deallocation function in the global scope. by Anders Carlsson · 15 years ago
  89. ab15d0e When performing a static downcast as part of a static_cast, make sure by Douglas Gregor · 15 years ago
  90. c07a494 Don't gratuitously mark the default constructors of base or member initializers as used by Douglas Gregor · 15 years ago
  91. 891fdae When adding the underlying declaration of a decl to a lookup-results by Douglas Gregor · 15 years ago
  92. c2e84ae Implement typeid for class types. by Mike Stump · 15 years ago
  93. 593564b When looking for operator() to type-check a call to an object of class by Douglas Gregor · 15 years ago
  94. a8285a8 Finish off support for typeinfo generation for classes. by Mike Stump · 15 years ago
  95. f86fedd Add clang -mcpu=native support, patch by Roman Divacky, varioustweaks by me. by Daniel Dunbar · 15 years ago
  96. 79cbc7d Add an internal CreateRecordDecl that will create a CXXRecordDecl when compiling C++ and a RecordDecl otherwise. by Anders Carlsson · 15 years ago
  97. a8a1e3d Always build a builtin operator expression for the __extension__ unary operator. by Anders Carlsson · 15 years ago
  98. 658e812 Handle CK_BitCast in EmitCastLValue. by Anders Carlsson · 15 years ago
  99. a82e4ae - Have TryStaticImplicitCast set the cast kind to NoOp when binding a reference. CheckReferenceInit already inserts implicit casts to the necessary types. This fixes an assertion in CodeGen for some casts and brings a fix for PR5453 close, if I understand that bug correctly. by Sebastian Redl · 15 years ago
  100. 5b6117a Canonicalize the type before trying to create a debug type. by Anders Carlsson · 15 years ago