1. 5dbacb4 Fix CIndex crash on invalid code reported in <rdar://problem/7833619>. by Ted Kremenek · 14 years ago
  2. e9f5581 Improve on diagnostics when an objc class is used as by Fariborz Jahanian · 14 years ago
  3. e8f5a17 Implement code completion for Objective-C method declarations and by Douglas Gregor · 14 years ago
  4. 2846b2b default access for synthesize ivar is @protect. Fixes radar 7823675. by Fariborz Jahanian · 14 years ago
  5. 0bd0459 Patch to not build ivar ASTs when they are ilegally declared in categories. by Fariborz Jahanian · 14 years ago
  6. 209acbd Devote a special diagnostic to the typo by John McCall · 14 years ago
  7. 68b9a59 Teach MemRegion::getBaseRegion() about ObjCIvarRegions. We want to treat by Ted Kremenek · 14 years ago
  8. 161755a Implement the protected access restriction ([class.protected]), which requires by John McCall · 14 years ago
  9. 2e4c7a5 When code completion produces an overload set as its results (e.g., by Douglas Gregor · 14 years ago
  10. fe0bdba Do not produce semicolons at the end of code-completion results by Douglas Gregor · 14 years ago
  11. 2f880e4 Only prove macros as code-completion results when we're in a case by Douglas Gregor · 14 years ago
  12. 22f5699 When sending a message to "id", apply some heuristics to try to narrow by Douglas Gregor · 14 years ago
  13. 914803f add a testcase that the integrated assembler rejects, this verifies by Chris Lattner · 14 years ago
  14. 719770d Make code-completion for Objective-C message sends to "id" work in the by Douglas Gregor · 14 years ago
  15. a983448 Put type restriction on convesion to nonconforming 'id' back in by Fariborz Jahanian · 14 years ago
  16. 13438f9 Implement support for code completion of an Objective-C message send to by Douglas Gregor · 14 years ago
  17. 85372b9 Add test for code completion of Objective-C message sends to classes. by Douglas Gregor · 14 years ago
  18. 64538cf Perform code-completion within ParseCastExpression, which handles, by Douglas Gregor · 14 years ago
  19. 84139d6 Extend the type printing policy to allow one to turn off the printing by Douglas Gregor · 14 years ago
  20. e32be1d Print the errors when a clang test fails instead of just listing the by Jeffrey Yasskin · 14 years ago
  21. 4800ea6 Emit debug info for objc getters and setters. by Devang Patel · 14 years ago
  22. 018b54e fix PR6780, properly handling the IR {|} escapes in inline asm strings. by Chris Lattner · 14 years ago
  23. 5c5db55 fix PR6782, an accept invalid. We weren't emitting the diagnostic by Chris Lattner · 14 years ago
  24. 09d9fa1 Code completion results that refer to macros now get the cursor kind by Douglas Gregor · 14 years ago
  25. 7b73b92 Always assume block-level expressions in the caller are alive when analyzing by Zhongxing Xu · 14 years ago
  26. 3ecd785 Reapply patch for adding support for address spaces and added a isVolatile field to memcpy, memmove, and memset. by Mon P Wang · 14 years ago
  27. 35d6461 Don't produce a vtable for a class if we have an explicit template instantiation declaration and no key function. We will produce the vtable at the explicit template instantiation. by Rafael Espindola · 14 years ago
  28. 05511fa Improve diagnosing when a method type does not start with '-'|'+' by Fariborz Jahanian · 14 years ago
  29. c7cbed0 Avoid unneeded calls to opt/llvm-dis. by Daniel Dunbar · 14 years ago
  30. fae7bf2 Merge several tests into switch.c. by Daniel Dunbar · 14 years ago
  31. 24e1408 diagnose declaring class extension after its implementation (radar 7822210). by Fariborz Jahanian · 14 years ago
  32. 6aae87d Diagnose invalid code with -fobjc-nonfragile-abi2 when by Fariborz Jahanian · 14 years ago
  33. b5b3b30 We seem to get an inconsistent alignment value in the generated by Douglas Gregor · 14 years ago
  34. c90f56d Revert r100193 since it causes failures in objc in clang by Mon P Wang · 14 years ago
  35. 2f59979 Rework our handling of copy construction of temporaries, which was a by Douglas Gregor · 14 years ago
  36. 8facca6 Reapply patch for adding support for address spaces and added a isVolatile field to memcpy, memmove, and memset. by Mon P Wang · 14 years ago
  37. bcc12fd If a constructor is a dependent context, just set the base and member initializers as they are written. Fixes a bug where we wouldn't show initialization order warnings when instantiating. by Anders Carlsson · 14 years ago
  38. ea356fb Diagnose multiple base and member initializers in class templates. by Anders Carlsson · 14 years ago
  39. 7bbe5f6 Check in a motivating test for the revised access semantics. by John McCall · 14 years ago
  40. db73c68 Correct the calculation of access to more closely model the wording in by John McCall · 14 years ago
  41. 699fca2 Relax the typesafty rules of block pointers types which by Fariborz Jahanian · 14 years ago
  42. b7a0926 Overhaul checking of non-type template arguments that should refer to by Douglas Gregor · 14 years ago
  43. 9618b85 Use the element type to compute the array size when the base region is a VarRegion. by Zhongxing Xu · 14 years ago
  44. 75a2d94 Fix a bug (PR 6699) in RegionStore::RemoveDeadBindings() where by Ted Kremenek · 14 years ago
  45. 1eabb7d Improve diagnostics when an elaborated-type-specifer containing a by Douglas Gregor · 14 years ago
  46. 4033642 Change the representation of dependent elaborated-type-specifiers by Douglas Gregor · 14 years ago
  47. 809872e Issue better syntax error when objc's messaging by Fariborz Jahanian · 14 years ago
  48. a3ce8ae Re-bind non-dependent CXXTemporaryObjectExpr nodes as temporaries when by Chandler Carruth · 14 years ago
  49. 5214683 Patch implements gcc's -Wno-protocol option to suppress warning by Fariborz Jahanian · 14 years ago
  50. aec5860 Support __attribute__((unused)) on types. This suddenly started firing by John McCall · 14 years ago
  51. 7727acf Fix PR6327: restore invariants when there's a parse error in an initializer. by John McCall · 14 years ago
  52. 32daa42 Regularize support for naming conversion functions in using decls. by John McCall · 14 years ago
  53. b57c757 Don't skip past the '}' if an expression has error and is not followed by ';'. by Argyrios Kyrtzidis · 14 years ago
  54. 031b371 Drastically simplify the computation of linkage for typeinfo by using by Douglas Gregor · 14 years ago
  55. 23cba80 Introduce a new kind of derived-to-base cast which bypasses the need for by John McCall · 14 years ago
  56. 658f679 Slightly relax test case. An upcoming LLVM commit will change the xor instruction. by Jakob Stoklund Olesen · 14 years ago
  57. 7c76027 Fix test in -Asserts build. by Daniel Dunbar · 14 years ago
  58. 842f07b Recognize __attribute__((NSObject)) directly applied by Fariborz Jahanian · 14 years ago
  59. b5896c3 Revert Mon Ping's 99930 due to broken llvm-gcc buildbots. by Bob Wilson · 14 years ago
  60. 425ef72 Remember the regparm attribute in FunctionType::ExtInfo. Fixes PR3782. by Rafael Espindola · 14 years ago
  61. 7fd3a64 When "delayed parsing" C++ default arguments, if there is an error, there may be tokens left in the token stream by Argyrios Kyrtzidis · 14 years ago
  62. 3be9678 Add a test for C++ [stmt.select]p3, which specifies that redeclaring a by Douglas Gregor · 14 years ago
  63. 6bb8017 Propagate the "found declaration" (i.e. the using declaration instead of by John McCall · 14 years ago
  64. 366ed48 Fix this test on windows. When running on windows we print by Rafael Espindola · 14 years ago
  65. 3b5caa2 Added support for address spaces and added a isVolatile field to memcpy, memmove, and memset by Mon P Wang · 14 years ago
  66. 5e40291 Improve diagnostics when printing a template instantiation backtrace by Douglas Gregor · 14 years ago
  67. 4552ff0 RegionStore: specially handle loads from integer global variables declared 'const'. by Ted Kremenek · 14 years ago
  68. 264ba48 the big refactoring bits of PR3782. by Rafael Espindola · 14 years ago
  69. 8891c42 Change the analyzer to recognize (but ignore) assignments to isa. Fixes PR 6302. by Ted Kremenek · 14 years ago
  70. f031774 Add Support for 'warn_unused_result" attribute on by Fariborz Jahanian · 14 years ago
  71. e0f3867 Don't produce a vtable if we are just instantiating a method and the by Rafael Espindola · 14 years ago
  72. ee11b2d Fix a bug where we would incorrectly report an error about initializing two fields in an anonymous struct. by Anders Carlsson · 14 years ago
  73. 8887bdc Use the new function in EmitClassAggrMemberwiseCopy, fixing the same assert as seen in PR6628 but for arrays this time. by Anders Carlsson · 14 years ago
  74. 46bbf8d Handle default arguments when calling copy constructors for bases or members when synthesizing a copy constructor. Fixes PR6628. by Anders Carlsson · 14 years ago
  75. d09020d Change a test to FileCheck bitcode instead of assembler. by Anders Carlsson · 14 years ago
  76. c9b64ba Flip the switch and use the new vtable layout code for everything. I've verified that this passes a self-host but I'll let the bots self host as well before removing the now dead code. by Anders Carlsson · 14 years ago
  77. 1c36393 When collecting virtual bases it's very important to use the canonical type of the base class. Otherwise, we might add the same virtual base class twice if the virtual base is an instantiated template. Fixes PR6251. by Anders Carlsson · 14 years ago
  78. 3edbeb7 add support for -MQ flag to quote targets in dependency file, by Chris Lattner · 14 years ago
  79. adb507d Another vtable layout fix, making us match gcc better. by Anders Carlsson · 14 years ago
  80. 0b4c9b5 Support __attribute__((packed)) (along with other attributes) at the by Douglas Gregor · 14 years ago
  81. 6f6de73 Fix a nasty bug in the virtual base computation which would lead to us initializing virtual bases in the wrong order. by Anders Carlsson · 14 years ago
  82. 02024a9 After performing template argument deduction for a function template, by Douglas Gregor · 14 years ago
  83. f283859 Further improvement to point to category by Fariborz Jahanian · 14 years ago
  84. ada087c Give thunks the same linkage as their original methods. by Anders Carlsson · 14 years ago
  85. 8822f7c Improve diagnostics on incomplete implementation by Fariborz Jahanian · 14 years ago
  86. 2cc2675 Accumulate all functions and classes that the effective context is by John McCall · 14 years ago
  87. b0cb022 Implement method friends in class templates and fix a few related problems. by John McCall · 14 years ago
  88. d0c89a4 Test for the previous commit. by Rafael Espindola · 14 years ago
  89. d8e10d2 When mapping restrict to noalias, look for 'restrict' on the parameter variable by John McCall · 14 years ago
  90. b1a56e7 Put function templates instantiated from friend declarations in the correct by John McCall · 14 years ago
  91. c67b032 Compare namespaces properly when looking for redeclarations of by Douglas Gregor · 14 years ago
  92. cfd8ea9 Fix NoReturnFunctionChecker to properly look at a function's type by Ted Kremenek · 14 years ago
  93. d606848 When adding initializers to a constructor, be sure that we are looking by Douglas Gregor · 14 years ago
  94. 2243288 Properly account for redeclarations when explicitly instantiating class templates. by John McCall · 14 years ago
  95. 0fd8ff7 When trying to determine whether one operand of a conditional by Douglas Gregor · 14 years ago
  96. 60c3893 Make sure we don't include mm_malloc.h in this test, it includes errno.h which by Daniel Dunbar · 14 years ago
  97. b70cf44 Switch semantic analysis of the conditional operator from using by Douglas Gregor · 14 years ago
  98. 1fc9e72 Spell -triple correctly for %clang, not %clang_cc1. by Daniel Dunbar · 14 years ago
  99. 9fabcbd i386-apple-darwin10 implies sse2, this option shouldn't be needed. by Chris Lattner · 14 years ago
  100. 8ff66de fix a case where macro expansion should be disabled, patch by Abramo Bagnara! by Chris Lattner · 14 years ago