1. 9e23932 Allow us to compare derived-to-base conversions between a reference by Douglas Gregor · 15 years ago
  2. 333de06 Don't try to finalize an ill-formed variable or one whose class type is ill-formed. Fixes PR6421 by Douglas Gregor · 15 years ago
  3. bf2ca2f Add "template" keyword at strategic position to fix compilation using g++ v3.4. by Gabor Greif · 15 years ago
  4. 3a81337 When comparing two method overload candidates during overload diagnostics, by John McCall · 15 years ago
  5. 78bd771 Fix a really trivial crasher and begin fleshing out one of the namespace test by Chandler Carruth · 15 years ago
  6. 23a370f Add a new conversion rank to classify conversions between complex and scalar by Chandler Carruth · 15 years ago
  7. edc9050 Restore the invariant that a nested-name-specifier can only contain by Douglas Gregor · 15 years ago
  8. 2ec93a8 Allow __attribute__((unused)) to be applied to ObjC ivars. by Ted Kremenek · 15 years ago
  9. f316a1d Remove some oogly code made dead by the pseudo-destructor instantiation changes. by Douglas Gregor · 15 years ago
  10. a2e7dd2 Use CXXPseudoDestructorExpr as the stored representation for dependent by Douglas Gregor · 15 years ago
  11. b1bdc62 Catch more uses of uninitialized implicit conversion sequences. by John McCall · 15 years ago
  12. fce46ee Keep track of the location of the '~' in a pseudo-destructor expression. by Douglas Gregor · 15 years ago
  13. 26d4ac9 Retain complete source information for the type after the '~' in a by Douglas Gregor · 15 years ago
  14. b4a418f Make sure that we have type source information for the scope type of a by Douglas Gregor · 15 years ago
  15. b57fb49 Split ActOnPseudoDestructorExpr into the part that interprets the by Douglas Gregor · 15 years ago
  16. e0601ea Retain source information for the "type-name ::" in a by Douglas Gregor · 15 years ago
  17. 7754908 ActOnPseudoDestructorExpr now performs all semantic analysis for by Douglas Gregor · 15 years ago
  18. d4dca08 Rework parsing of pseudo-destructor expressions and explicit by Douglas Gregor · 15 years ago
  19. 328ce34 When we encounter a function-specific attribute in a declaration specifier, by Charles Davis · 15 years ago
  20. f914b97 More Sema check for ivars in class continuation. by Fariborz Jahanian · 15 years ago
  21. 11e8ce7 Add support for the weakref attribute. We still produce "alias weak" as llvm-gcc does, but are more strict on what uses of weakref we accept. by Rafael Espindola · 15 years ago
  22. 09b6897 Fix another crash on invalid code. In this case, handle ObjC categories (with no names) by Ted Kremenek · 15 years ago
  23. c0cd21d Don't assert on compound assignment operators that operate in FP types when by John McCall · 15 years ago
  24. 064f7db When comparing two calling conventions after redeclaring a function, compare by Charles Davis · 15 years ago
  25. 72919a3 Move the rest of the unreachable code analysis from libSema by Ted Kremenek · 15 years ago
  26. 8de3cc6 Simplify check for basic block with a CXXTryStmt terminator. by Ted Kremenek · 15 years ago
  27. 3d2eed8 Start moving some of the logic for the unreachable code analysis out of libSema by Ted Kremenek · 15 years ago
  28. f067d8e Convert use of std::queue to llvm::SmallVector and fix buildbot. by Ted Kremenek · 15 years ago
  29. 0e5ad25 More support for ivars in class extension. by Fariborz Jahanian · 15 years ago
  30. 133a6aa Use SmallVectorImpl::iterator. by Ted Kremenek · 15 years ago
  31. 1e025f2 Simplify logic for determining values of 'ReturnsVoid' and 'HasNoReturn' flags. by Ted Kremenek · 15 years ago
  32. 93649fd Implement crazy destructor name lookup semantics differently in by Douglas Gregor · 15 years ago
  33. 83c481a Early support for declaring ivars in class extensions. wip. by Fariborz Jahanian · 15 years ago
  34. bf1764c Do not require a complete type when checking for a pointer conversion by Douglas Gregor · 15 years ago
  35. d84aac1 Add 'previous declaration is here' note for param redefinition errors, e.g.: by Chris Lattner · 15 years ago
  36. ce056bc Eliminate the default arguments to ASTContext::getFunctionType(), by Douglas Gregor · 15 years ago
  37. b10cd04 Implement support for parsing pseudo-destructor expression with a nested-name-specifier, e.g., by Douglas Gregor · 15 years ago
  38. 1211606 A constructor template cannot be used to copy to an object of the same class type (per C++ [class.copy]p3). Make sure that includes copies that involve a derived-to-base conversion. Fixes PR6141. by Douglas Gregor · 15 years ago
  39. 5e895a8 Commiting a revert from dgregor of a bit of destructor logic until we can by Chandler Carruth · 15 years ago
  40. 8761d68 Make Decl::isOutOfLine() virtual, and use that to determine when definitions by Chandler Carruth · 15 years ago
  41. 48108fd Clang really intends to reject attribute 'warn_unused_result' on Objective-C methods, but by Ted Kremenek · 15 years ago
  42. 240670c Don't emit a warning about a dllimport attribute being used in a typedef by Ted Kremenek · 15 years ago
  43. 12911a8 Don't warn about functions redeclared without the dllimport attribute when by Ted Kremenek · 15 years ago
  44. bd94d44 Start supporting declaration of ivars in @implementation blocks. WIP. by Fariborz Jahanian · 15 years ago
  45. 354095c Issue extended diagnostic when property dot-syntax is used and by Fariborz Jahanian · 15 years ago
  46. 36262b8 Implement C++ name lookup for instance variables of Objective-C classes by Douglas Gregor · 15 years ago
  47. c5e77d5 Make Sema::ActOnClassMessage robust when name lookup for the receiver by Douglas Gregor · 15 years ago
  48. ba7bc55 Revert: "Change InitListExpr to allocate the array for holding references" by Ted Kremenek · 15 years ago
  49. 9f9269e Change InitListExpr to allocate the array for holding references by Ted Kremenek · 15 years ago
  50. 11062e1 Patch removes IVars list from ObjCInterfaceDecl and by Fariborz Jahanian · 15 years ago
  51. b372b0f Fixed a crash specific to blocks in c++ uncovered by an internal test suite. by Fariborz Jahanian · 15 years ago
  52. e01c063 Also don't warn about force_align_arg_pointer on function typedefs. (This will by Charles Davis · 15 years ago
  53. beaf5ed Two fixes related to force_align_arg_pointer: by Charles Davis · 15 years ago
  54. 9329800 Add some spacing in the code-completion results for a return statement by Douglas Gregor · 15 years ago
  55. 63e5d7c Change the behavior of ibaction attributes to be attached to methods, not ivars. by Ted Kremenek · 15 years ago
  56. f3f8d2a Allow redefinitions of extern inline functions in GNU89 mode, just as GCC by Charles Davis · 15 years ago
  57. 2853eac Don't diagnose overflow in case statements when the conversion is a by Douglas Gregor · 15 years ago
  58. 31c780d Add 'ns_returns_not_retained' and 'cf_returns_not_retained' attributes to by Ted Kremenek · 15 years ago
  59. 30ab371 For -Wswitch-enum warnings, be sure to look through typedefs of enum by Douglas Gregor · 15 years ago
  60. 19c1525 When diagnosing enumerator values outside of the range of 'int', be by Douglas Gregor · 15 years ago
  61. 2f14c4d Use proper lexcial context for newly added ivars. by Fariborz Jahanian · 15 years ago
  62. 3a21cd9 Allow for declaration and use of ivars in a stand-alone by Fariborz Jahanian · 15 years ago
  63. c777221 Do not add functions marked with the unused attribute to the list of unused functions to warn about. Update test case. by Tanya Lattner · 15 years ago
  64. efbddd2 Add IBAction attribute to keep the IBOutlet attribute company. by Ted Kremenek · 15 years ago
  65. ab44216 Revert r95939, as suggested by Alexandre Julliard from the Wine project (and by Charles Davis · 15 years ago
  66. e873fb7 Introduce a new kind of failed result for isLvalue/isModifiableLvalue by Douglas Gregor · 15 years ago
  67. 2fa9800 Do not try to instantiate invalid declarations. It's a recipe for by Douglas Gregor · 15 years ago
  68. 124b878 Improve parsing and instantiation of destructor names, so that we can by Douglas Gregor · 15 years ago
  69. f0122fe dllimport and dllexport are declspec attributes, too. They're also by Charles Davis · 15 years ago
  70. 3b1e26b Rename argument so the name reflects what it's doing. by Benjamin Kramer · 15 years ago
  71. 3dbd3d5 Support local namespace aliases and permit them to be instantiated. by John McCall · 15 years ago
  72. 4e4b30e Refactor the logic for printf argument type-checking into analyze_printf::ArgTypeResult. by Ted Kremenek · 15 years ago
  73. e771a7a Add Sema support for __builtin_fpclassify by extending the existing check for __builtin_isinf and friends. Part of PR6083. by Benjamin Kramer · 15 years ago
  74. 17e0f40 Fix instantiation of template functions with local classes that contain virtual by Chandler Carruth · 15 years ago
  75. 2576061 Class continuation now has its own property ast for by Fariborz Jahanian · 15 years ago
  76. eeb1cb4 Optimize the implementation of IdDeclInfo pooling in the IdentifierResolver. by John McCall · 15 years ago
  77. 7385779 Defer covariance checks for dependent types. Add test cases that also ensure by Chandler Carruth · 15 years ago
  78. 291b441 Skip implicit instantiation of templated variables where a more recent by Chandler Carruth · 15 years ago
  79. b571924 Silence a GCC warning about a possibly uninitialized variable. It's data flow by Chandler Carruth · 15 years ago
  80. ae62889 Fix a fiendinshly fun little type-canonicalization bug, where we were by Douglas Gregor · 15 years ago
  81. fe33106 Permit the use of typedefs of class template specializations in by Douglas Gregor · 15 years ago
  82. 9a66c30 Complain if block-literal expression's parameter name is by Fariborz Jahanian · 15 years ago
  83. b37b648 Improve representation of tag declarations first declared or defined by Douglas Gregor · 15 years ago
  84. e13ad83 Work around an annoying, non-standard optimization in the glibc by Douglas Gregor · 15 years ago
  85. 8591098 In C++, allow builtins to be referred to via qualified name lookup, e.g., by Douglas Gregor · 15 years ago
  86. 27935ee Waste two bits in every clang::Type so that the type class can be read by John McCall · 15 years ago
  87. e6bbc01 Implementing unused function warning. by Tanya Lattner · 15 years ago
  88. b84412f Warn about using the new force_align_arg_pointer attribute on a function by Charles Davis · 15 years ago
  89. 4dffad6 When we have a dependent direct initializer but not a dependent by Douglas Gregor · 15 years ago
  90. ad7fe86 Fix leak in CXXNewExpr where the SubExprs array would get allocated directly using 'new[]' instead of the allocator associated with ASTContext. by Ted Kremenek · 15 years ago
  91. eb3b324 Allocate the SubExprs array in ObjCMessageExpr using the allocator associated with ASTContext. This fixes yet another leak (<rdar://problem/7639260>). by Ted Kremenek · 15 years ago
  92. 1497bff Uncomment lines I never meant to have left commented in a commit. by Ted Kremenek · 15 years ago
  93. 848fa64 More vtable layout dumper improvements. Handle destructors, dump the complete function type of the member functions (using PredefinedExpr::ComputeName. by Anders Carlsson · 15 years ago
  94. 5c41ee8 Patch by Cristian Draghici: by Ted Kremenek · 15 years ago
  95. 5961611 Use the allocator associated with ASTContext to allocate the args by Ted Kremenek · 15 years ago
  96. 3d2c43e Remove use of 'std::string' from Attr objects, using instead a byte by Ted Kremenek · 15 years ago
  97. 7504239 Strip attributes and 'inline' off the "previous declaration" of a by John McCall · 15 years ago
  98. 2d5b703 Remove another redundant ASTContext parameter by Douglas Gregor · 15 years ago
  99. 838db38 Eliminate a bunch of unnecessary ASTContexts from members functions of by Douglas Gregor · 15 years ago
  100. e9ff443 Diagnose when user provided getter is being used as lvalue by Fariborz Jahanian · 15 years ago