1. d981146 Fix a bunch of IndirectFieldDecl-related warnings. by Benjamin Kramer · 14 years ago
  2. 6538227 remove old compatibility APIs, use StringRef versions instead. by Chris Lattner · 14 years ago
  3. f69a1f3 change the various getFile routines to use StringRef as their implementation form. by Chris Lattner · 14 years ago
  4. d18857d Compilation error: remove extra comma. by Francois Pichet · 14 years ago
  5. 87c2e12 Major anonymous union/struct redesign. by Francois Pichet · 14 years ago
  6. a4c2475 Forward the -fno-elide-constructor argument to clang -cc1. Fixes PR8652. by Anders Carlsson · 14 years ago
  7. b13453b Handle CFGAutomaticObjDtor. by Zhongxing Xu · 14 years ago
  8. 44aa1f3 Revert r119838 "Don't warn for empty 'if' body if there is a macro that expands to nothing" by Argyrios Kyrtzidis · 14 years ago
  9. 7663f39 A bundle of whitespace changes, separated out from the functional changes. by Nick Lewycky · 14 years ago
  10. 9ce5584 Implement a simple hash function for libclang cursors by Douglas Gregor · 14 years ago
  11. 1a9d050 Implement clang_getCanonicalCursor() in libclang, which does the obvious thing. by Douglas Gregor · 14 years ago
  12. 2aa9267 Several PPCallbacks take an SourceLocation + IdentifierInfo, rather by Craig Silverstein · 14 years ago
  13. a25b6a4 Don't warn for empty 'if' body if there is a macro that expands to nothing, e.g: by Argyrios Kyrtzidis · 14 years ago
  14. 46f936e When parsing something that looks like an ill-formed by Douglas Gregor · 14 years ago
  15. aa5f135 Extend the libclang diagnostic API to provide information about the by Douglas Gregor · 14 years ago
  16. 3ffe629 Remove Diagnostic's get/setNumErrors() and getNumErrorsSuppressed(). by Argyrios Kyrtzidis · 14 years ago
  17. 8fc32d2 Refactoring. Get FunctionScopeInfo to use DiagnosticErrorTrap. by Argyrios Kyrtzidis · 14 years ago
  18. 9c4eb1f Refactoring. by Argyrios Kyrtzidis · 14 years ago
  19. bce8d4b Use a signed vector type for the shift amount operand of unsigned shifts. by Bob Wilson · 14 years ago
  20. ab41b97 Remove the hack where, to get the return status, we had special case for VerifyDiagnosticsClient by Argyrios Kyrtzidis · 14 years ago
  21. f2224d8 Since multiple diagnostics can share one diagnostic client, have the client keeping track by Argyrios Kyrtzidis · 14 years ago
  22. 33e4e70 Refactoring of Diagnostic class. by Argyrios Kyrtzidis · 14 years ago
  23. 9313aac Copy the LangOptions in PrintingPolicy to avoid pointing to a LangOptions that is long gone. by Argyrios Kyrtzidis · 14 years ago
  24. 0943168 Add an assertion, fix a whole bunch of bugs, comment the assertion by John McCall · 14 years ago
  25. 45ab4b5 In some situations, TemplateArgumentLoc wasn't setting TypeSourceLoc (see by Craig Silverstein · 14 years ago
  26. f89e55a Calculate the value kind of an expression when it's created and by John McCall · 14 years ago
  27. 6a02b60 Added method for handling CXXOperatorCallExpr differently from CallExpr if CXXOperatorCallExpr represents method call. by Marcin Swiderski · 14 years ago
  28. cdba659 CursorVisitor: switch remaining expressions over by Ted Kremenek · 14 years ago
  29. 1380a14 -Rename -Wargument-larger-than -> -Wlarge-by-value-copy by Argyrios Kyrtzidis · 14 years ago
  30. 0a90d32 Make definition of CXTranslationUnitImpl private to libclang. by Ted Kremenek · 14 years ago
  31. 3532fdd Introduce option -Wargument-larger-than[=N] which warns about function definitions if they take by-value by Argyrios Kyrtzidis · 14 years ago
  32. fdda171 Implement -pie. by Rafael Espindola · 14 years ago
  33. 82c63bf In EvalArguments allow for evaluation of first argument always as a lvalue. Will be used for CXXOperatorCallExpr that represents method call. by Marcin Swiderski · 14 years ago
  34. de26760 Warn if direct accessing synthesized ivar backing the property in by Fariborz Jahanian · 14 years ago
  35. 75fd3f9 Put warn_logical_and_in_logical_or warning in new warning group "logical-op-parentheses" member of "parentheses". by Argyrios Kyrtzidis · 14 years ago
  36. 4ffcb99 Add skeleton for handling various cfg dtors. by Zhongxing Xu · 14 years ago
  37. 08f92e3 a metric ton of refactoring later, Sema::getLocationOfStringLiteralByte by Chris Lattner · 14 years ago
  38. b060727 move getSpelling from Preprocessor to Lexer, which it is more conceptually related to. by Chris Lattner · 14 years ago
  39. 0833dd0 propagate preprocessor out of StringLiteralParser. It is now by Chris Lattner · 14 years ago
  40. a95880d push the preprocessor out of EncodeUCNEscape by Chris Lattner · 14 years ago
  41. 7ef5c27 move AdvanceToTokenCharacter and getLocForEndOfToken from by Chris Lattner · 14 years ago
  42. 872a45e add a static version of PP::AdvanceToTokenCharacter. by Chris Lattner · 14 years ago
  43. 6c66f07 push use of Preprocessor out farther. by Chris Lattner · 14 years ago
  44. ca1475e push use of Preprocessor out of getOffsetOfStringByte by Chris Lattner · 14 years ago
  45. 48cf982 add a static form of the efficient PP::getSpelling method. by Chris Lattner · 14 years ago
  46. 91f54ce refactor the interface to StringLiteralParser::getOffsetOfStringByte, by Chris Lattner · 14 years ago
  47. a4ffd85 For an Objective-C @synthesize statement, e.g., by Douglas Gregor · 14 years ago
  48. e3c60a7 Fix source-range information for Objective-C properties. Previously, by Douglas Gregor · 14 years ago
  49. 34c2630 Front-end support for __attribute__((may_alias)). This is not by Dan Gohman · 14 years ago
  50. bee77f7 Warn about arg1 && arg2 || arg3, as GCC 4.3+ does. Fixes rdar://8659922 by Argyrios Kyrtzidis · 14 years ago
  51. e19df18 turned pointers into pointers to const in function parameters in all functions/builtins accepting pointers to a const-qualified type according to PIM and "Language Extensions for CBEA" by Anton Yartsev · 14 years ago
  52. 4383e18 Emit a specific diagnostic when typedefing C++ bool, mirroring gcc. by Argyrios Kyrtzidis · 14 years ago
  53. 07d7e7a Re-work the handling of implicit 'this' arguments and silly GCC-style attribute by Chandler Carruth · 14 years ago
  54. a60ed47 Change CXTranslationUnit to not directly cast to an ASTUnit*, by Ted Kremenek · 14 years ago
  55. 64ccf24 Improve diagnostic for calling non-const method on const object. Fixes rdar://7743000 by Argyrios Kyrtzidis · 14 years ago
  56. 9dc84c9 Handle member initializer in C++ ctor. by Zhongxing Xu · 14 years ago
  57. a437ad3 Have CXXDeleteExpr::getDestroyedType return the actual destroyed type by Craig Silverstein · 14 years ago
  58. e2b7688 Kill CK_Unknown and flesh out the documentation for the existing CastKinds. by John McCall · 14 years ago
  59. 1c23e91 Kill off the remaining places which generate CK_Unknown casts. by John McCall · 14 years ago
  60. ed12273 Move CXString creation/management routines into by Ted Kremenek · 14 years ago
  61. 916c870 Add an ExternalASTSource hook to complete a type on demand. by John McCall · 14 years ago
  62. 4211bb6 Add support for "neon_vector_type" and "neon_polyvector_type" attributes by Bob Wilson · 14 years ago
  63. 5082d34 Add another case to the whitelist of cast kinds that can convert to bool. by John McCall · 14 years ago
  64. 7cd7d1a Add a new expression kind, OpaqueValueExpr, which is useful for by John McCall · 14 years ago
  65. d6543f8 Add method ParentMap::addStmt(). by Ted Kremenek · 14 years ago
  66. daa8e4e Assorted work leading towards the elimination of CK_Unknown. by John McCall · 14 years ago
  67. 9c6cd67 Add skeleton for handling other kinds of CFGElements. by Zhongxing Xu · 14 years ago
  68. 1b27ab3 Revert r119045. It was failing on Windows. by Ted Kremenek · 14 years ago
  69. b9ce656 Clean up initialization of LangOptions object by splitting part of it into a parent class by Ted Kremenek · 14 years ago
  70. f3ea8cf Add a few more complex-related cast kinds that arise due to arbitrary by John McCall · 14 years ago
  71. ae2cf76 When complaining about ambiguous overload resolution for a unary or by Douglas Gregor · 14 years ago
  72. 2bb5d00 Introduce five new cast kinds for various conversions into and by John McCall · 14 years ago
  73. cf33b24 Bring UsualArithmeticConversionsType back into Sema and cast the by John McCall · 14 years ago
  74. 3e47b48 Add GRWorkList::VisitItemsInWorkList() to allow a client to introspect the contents of a worklist. by Ted Kremenek · 14 years ago
  75. 404cd16 Introduce a null-to-pointer implicit cast kind. by John McCall · 14 years ago
  76. f69eb7c Generalize ASTContext::areCompatibleVectorTypes to handle new Neon vector types. by Bob Wilson · 14 years ago
  77. cc3b946 Increase VectorTypeBitfields::VecKind field from 2 to 3 bits. by Bob Wilson · 14 years ago
  78. 491328c Add a separate NeonPolyVector kind to distinguish polynomial vector types. by Bob Wilson · 14 years ago
  79. 41bafb1 API enhancements to TypeLocBuilder. by John McCall · 14 years ago
  80. cb7b1e1 Make sure to always check the result of by Douglas Gregor · 14 years ago
  81. 8f0889c Fix use of an uninitialized SourceLocation because DeclarationNameLoc failed to completely zero-initialize itself. by Ted Kremenek · 14 years ago
  82. 606f656 Remove some unnecessary reinterpret_cast. by Francois Pichet · 14 years ago
  83. 15d7d12 Extend the bitfield-truncation warning to initializations. by John McCall · 14 years ago
  84. e47be3e Improve ASTUnit's capture of diagnostics so that the by Douglas Gregor · 14 years ago
  85. e86d78c Add a variant of GCC-style vector types for ARM NEON. by Bob Wilson · 14 years ago
  86. d65587f Instantiate class member template partial specialization declarations by Douglas Gregor · 14 years ago
  87. 8113ecf Region-allocate all AttributeList objects from a factory object instead of manually managing them by Ted Kremenek · 14 years ago
  88. 826faa2 Replace UsingDecl's SmallPtrSet of UsingShadowDecls with a linked list to avoid leaking memory. by Argyrios Kyrtzidis · 14 years ago
  89. 78b8105 Diagnose attempst to template using declarations and using directives. by John McCall · 14 years ago
  90. beb22aa Add a warning for implicit truncation of constant values due to by John McCall · 14 years ago
  91. 091f23f Split out -Wconversion warnings about constant precision into their by John McCall · 14 years ago
  92. ba8bda0 Restore patch reversed in r118475. Fixes // rdar://8632525 by Fariborz Jahanian · 14 years ago
  93. ee743f9 Use the right calling convention when mangling names in the Microsoft C++ by Charles Davis · 14 years ago
  94. 19ddda8 Include System/DataTypes.h in Diagnostic.h to get intptr_t. by Rafael Espindola · 14 years ago
  95. a9b06d4 ntroduce clang_getSpellingLocation() into libclang, to provide the by Douglas Gregor · 14 years ago
  96. 27a31fe Revert r118492, which didn't update all of its tests accordingly by Douglas Gregor · 14 years ago
  97. b627871 Introduce clang_getSpellingLocation() into libclang, to provide the by Douglas Gregor · 14 years ago
  98. b2d57ae Add __nullptr as a C++0x nullptr literal, available in C++98 by Douglas Gregor · 14 years ago
  99. c8c62c4 Reverse patch for // rdar://8632525. It might has broken a build. by Fariborz Jahanian · 14 years ago
  100. c4ba51f Fix InitListExpr::getSourceRange() to work in the case of no locations for '(' and ')'. This can happen by Ted Kremenek · 14 years ago