1. aea67db Introduce a new BufferResult class to act as the return type of by Douglas Gregor · 15 years ago
  2. 9f550ff Make 'findPropertyDecl()' a static method of ObjCPropertyDecl. by Ted Kremenek · 15 years ago
  3. 894ae6a Correctly determine if the @property has been previously declared. If by Ted Kremenek · 15 years ago
  4. ee9ca69 objective-c++ must take into account qualifiers when by Fariborz Jahanian · 15 years ago
  5. dbdf5e7 During C++ name lookup, use DeclContext::Equals() rather than by Douglas Gregor · 15 years ago
  6. 711be1e Implement C++ [temp.local]p8, which specifies that a template by Douglas Gregor · 15 years ago
  7. 4b7a834 Add support for -Wwrite-strings. Patch by Mike M! Fixes PR 4804. by John McCall · 15 years ago
  8. b621766 Remember declaration scope qualifiers in the AST. Imposes no memory overhead by John McCall · 15 years ago
  9. 961b167 Fix PR6562. If a type is dependent, we don't know if it will have implicit by Rafael Espindola · 15 years ago
  10. 1935754 Use SmallString instead of SmallVector by Kovarththanan Rajaratnam · 15 years ago
  11. 3352406 Allow users to set CPPFLAGS and CXXFLAGS on the make command line. by Jeffrey Yasskin · 15 years ago
  12. 4c9f709 Use llvm::SmallVector instead of std::vector. by Ted Kremenek · 15 years ago
  13. cffbc78 Preserve the inherited-default-argument bit through instantiation. by John McCall · 15 years ago
  14. bf73b35 Remember whether a ParmVarDecl was spelled with a default argument or by John McCall · 15 years ago
  15. 0faede6 Improve the unused-value check to look into comma expressions and filter out by John McCall · 15 years ago
  16. e3d67bc Split Sema::ActOnProperty() into two recursive functions to clearly separate by Ted Kremenek · 15 years ago
  17. d60e22e Implement basic support for friend types and functions in non-dependent by John McCall · 15 years ago
  18. 2d2f936 Fix 80 col violations. by Ted Kremenek · 15 years ago
  19. 28685ab Move 'ActOn' methods to the beginning of the file by Ted Kremenek · 15 years ago
  20. 34836f2 Update CMake build. by Ted Kremenek · 15 years ago
  21. 9d64c15 Split Sema logic for ObjC @property and @synthesize into a separate file. by Ted Kremenek · 15 years ago
  22. 7d2aa11 For ivars created using @synthesize, set their DeclContext to be by Ted Kremenek · 15 years ago
  23. d1b47bf Warn about comparing an unsigned expression with 0 in tautological ways. by John McCall · 15 years ago
  24. 80639de Implement -Wmissing-field-initializers. Patch by mikem! by John McCall · 15 years ago
  25. 069ace5 Fix a self-host problem caused by this over-eager assertion. I'm not sure by John McCall · 15 years ago
  26. 21ef0fa Maintain type source information for functions through template by John McCall · 15 years ago
  27. 92b7f70 Split C++ friend declarations into their own header/implementation file. by John McCall · 15 years ago
  28. dd8f569 Statement expressions can be used in global- or namespace-scoped blocks by Douglas Gregor · 15 years ago
  29. 3cb0ebd Create a new InjectedClassNameType to represent bare-word references to the by John McCall · 15 years ago
  30. bbf58bb Delay codegen of vtables when handling implicit instantiations. by Rafael Espindola · 15 years ago
  31. c2350e5 Extend ObjCMessageExpr for class method sends with the source location by Douglas Gregor · 15 years ago
  32. 4bc1cb6 Keep track of type source information in the return type of an by Douglas Gregor · 15 years ago
  33. a48b284 Remove unused headers. by Duncan Sands · 15 years ago
  34. 5abbd60 Make a note for the C++0x future, when we'll have to revisit the jump-diagnostics handling for variables without initializers by Douglas Gregor · 15 years ago
  35. 516a6bc In C++98/03, an uninitialized variable that has POD class type will be by Douglas Gregor · 15 years ago
  36. a276291 Downgrade errors when trying to catch a pointer or reference to by Douglas Gregor · 15 years ago
  37. a50ce32 Robustify callers that rebuild typename type nodes again NULL return by Douglas Gregor · 15 years ago
  38. 4ce46c2 Perform overload resolution when static_cast'ing from a by Douglas Gregor · 15 years ago
  39. a1a9f03 Reference binding via user-defined conversion can compute a binding by Douglas Gregor · 15 years ago
  40. d6a9324 Fix for PR6294: we should only delay recording nested dynamic classes if they by Eli Friedman · 15 years ago
  41. 1dcd061 Fix 80 col violation. by Tanya Lattner · 15 years ago
  42. 47f164e Fix indentation, use string directly instead of StringRef. by Tanya Lattner · 15 years ago
  43. 20df668 Fix some weird patch issue. by Tanya Lattner · 15 years ago
  44. 1e1d396 Implement missing-braces warning and add a test case. by Tanya Lattner · 15 years ago
  45. dbf217a Allow use of byref (__block attributed) arrays inside by Fariborz Jahanian · 15 years ago
  46. 6d18289 When declaring a catch block in C++, make sure that the type being by Douglas Gregor · 15 years ago
  47. a422864 Patch to build qualifier on objective-c pointer types. Fixes radar 7626768. by Fariborz Jahanian · 15 years ago
  48. 5fccd36 Reinstate r97674 with a fix for the assertion that was firing in <list> by Douglas Gregor · 15 years ago
  49. a7cb22d Revert r97674; it's causing failures by Douglas Gregor · 15 years ago
  50. b29b37d Implement disambiguation of base class members via a by Douglas Gregor · 15 years ago
  51. e97c32f Suppress implicit member redeclarations arising from explicit instantiation by John McCall · 15 years ago
  52. 7b9a5aa During codegen assert that any copy assignment, destructor or constructor that by Rafael Espindola · 15 years ago
  53. 9b9edd6 Diagnose the declaration of enum templates. Also, be a bit more by Douglas Gregor · 15 years ago
  54. 91be6f5 Use CXXTemporaryObjectExpr for explicitly-constructed temporaries. We by Douglas Gregor · 15 years ago
  55. 6b98b2e Unify initializer-instantiation code for variable declarations and by Douglas Gregor · 15 years ago
  56. ad5e738 Split out types that are non-canonical unless dependent as their own by John McCall · 15 years ago
  57. 9ea9bdb Keep an explicit stack of function and block scopes, each element of by Douglas Gregor · 15 years ago
  58. 7bf3600 Fix the lookup of names used in a friend declaration to not attempt to by Chandler Carruth · 15 years ago
  59. e679497 fix PR5933: don't warn about unused variables if a function has other errors in it. by Chris Lattner · 15 years ago
  60. 6d97e5e Implement jump checking for initialized c++ variables, implementing by Chris Lattner · 15 years ago
  61. 076ceb0 Start detangling the BlockSemaInfo/Sema mess. No functionality change. by Douglas Gregor · 15 years ago
  62. 449d0a8 When looking for a redeclaration of a static variable, only look for redeclarations. Fixes PR6449 by Douglas Gregor · 15 years ago
  63. 96084f1 When instantiating a function-scoped enum, make sure that it and its by Douglas Gregor · 15 years ago
  64. 0022554 Robustify instantiation of templates when there are errors in the by Douglas Gregor · 15 years ago
  65. aac571c Finish pushing source-location information though TreeTransform's by Douglas Gregor · 15 years ago
  66. 7c1e98f When looking for the instantiated declaration that corresponds to a by Douglas Gregor · 15 years ago
  67. f9f627d Don't warn about case-value conversions from a negative value to a by Douglas Gregor · 15 years ago
  68. a9bff30 Warn about the deprecated string literal -> char* conversion. Fixes PR6428. by Douglas Gregor · 15 years ago
  69. ddeea56 Add an overload of Preprocessor::getSpelling which takes a SmallVector and by Benjamin Kramer · 15 years ago
  70. e3fc547 Fix crasher caused by setting a bit in a possibly empty bitvector while by Ted Kremenek · 15 years ago
  71. efaff19 For printf format string checking, add support for positional format strings. by Ted Kremenek · 15 years ago
  72. 5fe8c04 Skip dependent virtual base classes; fixes PR6413. by Douglas Gregor · 15 years ago
  73. 2a0d757 At sabre's request, drop the FP bounds diagnostics down to warnings and file by John McCall · 15 years ago
  74. 7f70dc8 For printf format string checking, move the tracking of the data argument index out of by Ted Kremenek · 15 years ago
  75. dc0a11c An explicit specialization is allowed following an explicit by Douglas Gregor · 15 years ago
  76. 6d90870 Implement semantic analysis for C++ [expr.new]p18-20, which describe by Douglas Gregor · 15 years ago
  77. 692f85c Commit Eli's fix for implicit conversions to array type. Fixes PR6264. by Douglas Gregor · 15 years ago
  78. 1af7451 Make sure to mark constructors, operator new, and operator delete as by Douglas Gregor · 15 years ago
  79. c845aad When we decide to re-use an existing CXXConstructExpr node, make sure by Douglas Gregor · 15 years ago
  80. b2cb1cb When computing the composite pointer type for relational comparisons, by Douglas Gregor · 15 years ago
  81. 9e23932 Allow us to compare derived-to-base conversions between a reference by Douglas Gregor · 15 years ago
  82. 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
  83. bf2ca2f Add "template" keyword at strategic position to fix compilation using g++ v3.4. by Gabor Greif · 15 years ago
  84. 3a81337 When comparing two method overload candidates during overload diagnostics, by John McCall · 15 years ago
  85. 78bd771 Fix a really trivial crasher and begin fleshing out one of the namespace test by Chandler Carruth · 15 years ago
  86. 23a370f Add a new conversion rank to classify conversions between complex and scalar by Chandler Carruth · 15 years ago
  87. edc9050 Restore the invariant that a nested-name-specifier can only contain by Douglas Gregor · 15 years ago
  88. 2ec93a8 Allow __attribute__((unused)) to be applied to ObjC ivars. by Ted Kremenek · 15 years ago
  89. f316a1d Remove some oogly code made dead by the pseudo-destructor instantiation changes. by Douglas Gregor · 15 years ago
  90. a2e7dd2 Use CXXPseudoDestructorExpr as the stored representation for dependent by Douglas Gregor · 15 years ago
  91. b1bdc62 Catch more uses of uninitialized implicit conversion sequences. by John McCall · 15 years ago
  92. fce46ee Keep track of the location of the '~' in a pseudo-destructor expression. by Douglas Gregor · 15 years ago
  93. 26d4ac9 Retain complete source information for the type after the '~' in a by Douglas Gregor · 15 years ago
  94. b4a418f Make sure that we have type source information for the scope type of a by Douglas Gregor · 15 years ago
  95. b57fb49 Split ActOnPseudoDestructorExpr into the part that interprets the by Douglas Gregor · 15 years ago
  96. e0601ea Retain source information for the "type-name ::" in a by Douglas Gregor · 15 years ago
  97. 7754908 ActOnPseudoDestructorExpr now performs all semantic analysis for by Douglas Gregor · 15 years ago
  98. d4dca08 Rework parsing of pseudo-destructor expressions and explicit by Douglas Gregor · 15 years ago
  99. 328ce34 When we encounter a function-specific attribute in a declaration specifier, by Charles Davis · 15 years ago
  100. f914b97 More Sema check for ivars in class continuation. by Fariborz Jahanian · 15 years ago