1. fa6ef18 Add an unreachable code checker. by Mike Stump · 15 years ago
  2. 220ccbf Improve the reporting of non-viable overload candidates by noting the reason by John McCall · 15 years ago
  3. 4f123ff Remove broken fix-it when a default function argument has been by Douglas Gregor · 15 years ago
  4. 48c2d56 When in objective-c methods, do the built-in name lookup after by Fariborz Jahanian · 15 years ago
  5. d1e4d9b Don't emit string-comparison or self-comparison warnings in by Douglas Gregor · 15 years ago
  6. cb329c5 use DiagRuntimeBehavior to silence the div/rem by zero warning when by Chris Lattner · 15 years ago
  7. 84d0a19 Improve recovery for template-ids whose template-name doesn't actually by Douglas Gregor · 15 years ago
  8. 7ef655a implement PR6004, warning about divide and remainder by zero. by Chris Lattner · 15 years ago
  9. a1e1dc7 implement PR6007, diagnosing invalid attribute((section)) by Chris Lattner · 15 years ago
  10. 5535c38 Fix the CodeGen half of PR5911 by changing reference initialization to by Chandler Carruth · 15 years ago
  11. 2e93388 When determining whether a given name is a template in a dependent by Douglas Gregor · 15 years ago
  12. cbce606 So I was sitting around, trying vainly to think of something to commit, and then by John McCall · 15 years ago
  13. 834389b Use horizontal-space markers in code-completion results rather than by Douglas Gregor · 15 years ago
  14. 3c80f57 Reorganize some of the code to note overload candidates. Improves the by John McCall · 15 years ago
  15. 3f477a1 Name lookup should know better than to look into a class before it's defined by Douglas Gregor · 15 years ago
  16. bf65c0b Sort overload results by viability. by John McCall · 15 years ago
  17. 1d31833 Introduce a specific representation for the ambiguous implicit conversion by John McCall · 15 years ago
  18. b862b8f Eliminate an embarrassing performance regression in C/ObjC, where we by Douglas Gregor · 15 years ago
  19. af40776 Reverted r93198; done without reading relevant PR. by David Chisnall · 15 years ago
  20. 277d280 When performing name lookup into a scope, check that its entity is by Douglas Gregor · 15 years ago
  21. 004f81f Allow VLAs in C++ if in GNU mode (GNU C++ permits them). Clang can now compile LanguageKit, although the resulting code crashes (although not in any of the functions that use VLAs). by David Chisnall · 15 years ago
  22. 05f6500 C++0x [dcl.typedef]p4, take 3, where we actually figure out what "that by Douglas Gregor · 15 years ago
  23. 3970099 Use isa<ElaboratedType> rather than getAs<ElaboratedType>, since the by Douglas Gregor · 15 years ago
  24. 93dda72 Allow redefinitions of typedef-names within class scope when the type by Douglas Gregor · 15 years ago
  25. 9e68871 When resolving a single function template specialization to a by Douglas Gregor · 15 years ago
  26. 9007328 When computing surrogates for calls to a value of object type, look by Douglas Gregor · 15 years ago
  27. 066b0f1 Remove some pointless FIXMEs. No functionality change by Douglas Gregor · 15 years ago
  28. 0c55106 Add support for out-of-line definitions of conversion function by Douglas Gregor · 15 years ago
  29. 58408bc Tighten up the "cannot return array or function type" diagnostic to by Douglas Gregor · 15 years ago
  30. 48026d2 Implement name lookup for conversion function template specializations by Douglas Gregor · 15 years ago
  31. 199c3d6 Roll out ASTContext::getTypeSizeInChars(), replacing instances of by Ken Dyck · 15 years ago
  32. e27d87f Make Clang complain about taking the address of an unqualified member function. Fixes PR5985. by Sebastian Redl · 15 years ago
  33. 01dfea0 Improve code completion by introducing patterns for the various C and by Douglas Gregor · 15 years ago
  34. f3e27bf Try to make cmake happy by Anton Korobeynikov · 15 years ago
  35. 82d0a41 Generalize target weirdness handling having proper layering in mind: by Anton Korobeynikov · 15 years ago
  36. 8120162 Change the printing of OR_Deleted overload results to print all the candidates, by John McCall · 15 years ago
  37. a1d7d62 Reorganize PrintOverloadCandidates. No functionality change. by John McCall · 15 years ago
  38. 827feec Improve the fix-its for -Wparentheses to ensure that the fix-it by Douglas Gregor · 15 years ago
  39. 828a197 Add an "implicit" bit to CXXThisExpr, so that we can track by Douglas Gregor · 15 years ago
  40. 1eb3e10 Improve the lead diagnostic for C++ object subscript expressions with by John McCall · 15 years ago
  41. 782f2f5 Change ObjCContainerDecl to contain the entire range for the '@end' by Ted Kremenek · 15 years ago
  42. 539c5c3 Fix the search for visible declarations within a Scope to ensure that by Douglas Gregor · 15 years ago
  43. 0d535c8 When we typo-correct a base class initializer, point to the base class by Douglas Gregor · 15 years ago
  44. 67dd1d4 Whenever we emit a typo-correction diagnostic, also emit a note by Douglas Gregor · 15 years ago
  45. a6f2638 When suggesting a typo correction for an @implementation without a by Douglas Gregor · 15 years ago
  46. 319d57f Move the allocation of designators in DesignatedInitExpr to the by Douglas Gregor · 15 years ago
  47. 0acc311 Don't assert when dealing with unsigned casts of lvalues. Fixes PR5961. by John McCall · 15 years ago
  48. 60fad45 Derive tighter ranges for & and >> in the conversion-checking code. by John McCall · 15 years ago
  49. b73e281 Fix a bug when property is redeclared in multiple by Fariborz Jahanian · 15 years ago
  50. 4b0f21c Fix marking of virtual members for nested classes whose first non-pure virtual function has a body inlined in the class by Douglas Gregor · 15 years ago
  51. adda846 Make sure that the key-function computation produces the correct by Douglas Gregor · 15 years ago
  52. b1622a1 Improve the diagnostics used to report implicitly-generated class members by John McCall · 15 years ago
  53. f2370c9 Significantly rework the calculation of effective integer-expression ranges by John McCall · 15 years ago
  54. 159ef1e Make our marking of virtual members functions in a class be by Douglas Gregor · 15 years ago
  55. 1dac341 Per offline discussion with Doug, don't perform typo correction when we have encountered a fatal error. On some files that are woefully wrong (missing headers) this can cause a 3x slowdown in some cases when parsing the file. It makes sense not to perform typo correction in this case because after a fatal error diagnostics will either be suppressed or not really make any sense. by Ted Kremenek · 15 years ago
  56. 02deae8 Do not diagnose method disguised as property setter by Fariborz Jahanian · 15 years ago
  57. bd6d619 Improve key-function computation for templates. In particular: by Douglas Gregor · 15 years ago
  58. 2849734 Disallow captured arrays in blocks as well. Radar 7438948. by Mike Stump · 15 years ago
  59. 0d6fd57 Disallow capturing vlas inside blocks. by Mike Stump · 15 years ago
  60. 724d7fc Remove stale comment. We already do format string checking for functions with the format attribute. by Ted Kremenek · 15 years ago
  61. 51313c3 Move the -Wconversion logic into SemaChecking.cpp. There's a fair amount of by John McCall · 15 years ago
  62. ba26e58 Move the -Wsign-compare logic into SemaChecking.cpp. by John McCall · 15 years ago
  63. 1cd95e2 Avoid warnings for functions that return a value using MS-style inline by Mike Stump · 15 years ago
  64. 3b11fd3 Remember if the AsmStmt came from Microsoft-style inline assembly code. by Mike Stump · 15 years ago
  65. bc02170 -Wsign-compare shouldn't warn when the signed operand is a conditional operator by John McCall · 15 years ago
  66. 4424713 Make sure to use ASTContext::getAs*ArrayType() when decomposing array by Douglas Gregor · 15 years ago
  67. 95ff742 When declaring an Objective-C implementation without a corresponding by Douglas Gregor · 15 years ago
  68. f06cdae Implement typo correction for a variety of Objective-C-specific constructs: by Douglas Gregor · 15 years ago
  69. 5b088a1 Fix minor oversight for increment/decrement of complex int. Add tests for by Eli Friedman · 15 years ago
  70. de8ac49 Get rid of more unnecessary code. by Eli Friedman · 15 years ago
  71. d2835b7 Get rid of some unnecessary code. by Eli Friedman · 15 years ago
  72. 3a34994 Eliminate dead code. by Eli Friedman · 15 years ago
  73. e358201 Make sure that the search for visible declarations looks into the semantic parents of out-of-line function contexts by Douglas Gregor · 15 years ago
  74. d203a16 When typo correction for an id-expression finds a type (or Objective-C by Douglas Gregor · 15 years ago
  75. c171e3b Typo correction for C99 designated field initializers, e.g., by Douglas Gregor · 15 years ago
  76. ac4c939 It's OK for a return type to be incomplete if it's being defined. by Anders Carlsson · 15 years ago
  77. be2e205 Make sure that an overriding return type is complete before checking if it's covariant. Fixes PR5920. by Anders Carlsson · 15 years ago
  78. fe0241e Typo correction for C++ base and member initializers, e.g., by Douglas Gregor · 15 years ago
  79. 175a656 Typo correction for identifiers within nested name specifiers, e.g., by Douglas Gregor · 15 years ago
  80. bfea239 Typo correction for template names, e.g., by Douglas Gregor · 15 years ago
  81. 2dcc011 Typo correction for member access into classes/structs/unions, e.g., by Douglas Gregor · 15 years ago
  82. bb092ba Implement typo correction for id-expressions, e.g., by Douglas Gregor · 15 years ago
  83. 8c3f890 improve diagnostics for case when a field type is unknown by by Chris Lattner · 15 years ago
  84. 551f708 when making a decl for __builtin_fabsf() make sure to by Chris Lattner · 15 years ago
  85. e8337df fix PR5917, L'x' was getting the wrong type in c++ mode. Per by Chris Lattner · 15 years ago
  86. 6b401c0 remove extraneous #include by Chris Lattner · 15 years ago
  87. 546be3c Typo correction for type names when they appear in declarations, e.g., given by Douglas Gregor · 15 years ago
  88. a6e5199 Fix typo in comment by Douglas Gregor · 15 years ago
  89. e724246 More fixes to the handling of CVR-comparisons on array types. Adds a method to by Chandler Carruth · 15 years ago
  90. 5126fd0 Typedefs can be redeclared. That seems like something we should record in by John McCall · 15 years ago
  91. 595e290 Fix support for const_cast<>s of array types which actual change the by Chandler Carruth · 15 years ago
  92. 28e318c Correctly refer to element CVR qualifications when determining if a type is by Chandler Carruth · 15 years ago
  93. f5f7d86 Get rid of FixedWidthIntType, as suggested by Chris and Eli. by Anders Carlsson · 15 years ago
  94. bd64729 Handle using declarations in overloaded and template functions during ADL and by Chandler Carruth · 15 years ago
  95. efa42f7 Don't look through casts when looking for the underlying decl for a function by Eli Friedman · 15 years ago
  96. e6d11b7 Attempted fix for PR5884; this code will be dead soon, but this fix should by Eli Friedman · 15 years ago
  97. 54d76db Remove some dead variables clang-analyzer found. by Benjamin Kramer · 15 years ago
  98. cb48f8a Make copy constructor elimination work in more cases; the case in question by Eli Friedman · 15 years ago
  99. 7557a13 Egregious, disgusting workaround for PR5866. We need to rework how we by Douglas Gregor · 15 years ago
  100. 8aa5f40 Add test case for PR5868, and improve location information slightly for implicit "this" expressions by Douglas Gregor · 15 years ago