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