1. 1838ca5 Add a new warning on NULL pointer constant to integer conversion. by Richard Trieu · 13 years ago
  2. e72c55b Fix a regression in the source locations for unary trait expressions. by Chandler Carruth · 13 years ago
  3. 26c1b8d Add support for ARM ldrexd/strexd builtins by Bruno Cardoso Lopes · 13 years ago
  4. 469244a Add a couple of helper methods in the SourceManager API, isAtStartOfMacroInstantiation/isAtEndOfMacroInstantiation by Argyrios Kyrtzidis · 13 years ago
  5. e4d645c Enhance Clang to start instantiating static data member definitions by Chandler Carruth · 13 years ago
  6. f968d83 Objective-C doesn't consider the use of incomplete types as method by Douglas Gregor · 13 years ago
  7. f858bd8 Add a fix-it and better error recovery for improperly nested namespaces. This will give a better error message for cases such as "namespace foo::bar::baz {}" and a suggested fix-it of "namespace foo { namespace bar { namespace baz {} } }" by Richard Trieu · 13 years ago
  8. 9d342d0 Add a convenience interface for checking expression arguments to unary by Chandler Carruth · 13 years ago
  9. 9ae60d5 Implement a new warning for when adding a default argument to a method by Sean Hunt · 13 years ago
  10. e5cfd52 static analyzer: when conservatively evaluating functions, don't invalidate the values of globals when the called function is strlen. by Ted Kremenek · 13 years ago
  11. 8271317 Update our diagnostics to properly account for move operations. by Sean Hunt · 13 years ago
  12. ffe37fd Implement a little bit of cleanup and a lot more of the base work by Sean Hunt · 13 years ago
  13. 563a645 Add support for Microsoft __if_exists, __if_not_exists extension at class scope. by Francois Pichet · 13 years ago
  14. 477aab6 A StringRef-ication of the DiagnosticIDs API and internals. by Argyrios Kyrtzidis · 13 years ago
  15. 3573fff Driver: Don't warn about unused PIE arguments. by Daniel Dunbar · 13 years ago
  16. ca63c20 Implement a new type node, UnaryTransformType, designed to represent a by Sean Hunt · 13 years ago
  17. 6f0074a Add new warning that warns when invoking 'delete' on a polymorphic, non-final, class without a virtual destructor. by Argyrios Kyrtzidis · 13 years ago
  18. 74a5fd8 Make it possible for external tools to distinguish between paths that come from -I and paths that come from -system. Patch from Paul Holden! by Nico Weber · 13 years ago
  19. 0f16159 MSVC doesn't do any validation regarding exception specification. by Francois Pichet · 13 years ago
  20. b2ee830 Emulate a MSVC bug where if during an using declaration name lookup, the declaration found is unaccessible (private) and that declaration was bring into scope via another using declaration whose target declaration is accessible (public) then no error is generated. by Francois Pichet · 13 years ago
  21. 74a63bc Change the default for supporting ObjC GC to true. This shouldn't really be in ToolChain at all, since it's a property of the objc runtime library. by David Chisnall · 13 years ago
  22. 4d50934 Fix the clang part of PR7952: rewrite the specialization of isa<> in DeclBase, by Eli Friedman · 13 years ago
  23. e885e18 Diagnose the presence of storage-class-specifiers on explicit by Douglas Gregor · 13 years ago
  24. c9471b0 Introduce the -fdiagnostics-format=xxx option to control how Clang by Douglas Gregor · 13 years ago
  25. 5e9ebb3 A few more is(Un)signedIntegerType/is(Un)signedOrEnumerationType cleanups. by Douglas Gregor · 13 years ago
  26. 0fd228d Implement C++0x semantics for passing non-POD classes through varargs. by Douglas Gregor · 13 years ago
  27. 575a1c9 Introduce Type::isSignedIntegerOrEnumerationType() and by Douglas Gregor · 13 years ago
  28. b7ec906 Downgrade the error about re-opening an inline namespace as non-inline by Douglas Gregor · 13 years ago
  29. 4926d83 Clean up two comments by Douglas Gregor · 13 years ago
  30. 1e55e91 Undo enough of r131143 to make private copy ctor diags say "copy constructor" again by Matt Beaumont-Gay · 13 years ago
  31. 46a4939 Correction for r131662, the GNU as option is --fatal-warnings. by Joerg Sonnenberger · 13 years ago
  32. d793350 Support -fatal-warnings for the assembler frontend by Joerg Sonnenberger · 13 years ago
  33. db5d44b Implement __underlying_type for libc++. by Sean Hunt · 13 years ago
  34. 0ee3391 Reapply r121528, fixing PR9941 by delaying the exception specification check for destructors until the class is complete and destructors have been adjusted. by Sebastian Redl · 13 years ago
  35. 1d78032 Revert r121528 as it breaks a simple testcase, which leads to, among by Sean Hunt · 13 years ago
  36. 0320a1d Implement implicit exception specifications of destructors. by Sebastian Redl · 13 years ago
  37. 403de3f Fix a nasty bug where inside StringLiteralParser: by Argyrios Kyrtzidis · 13 years ago
  38. be63122 Fix some minor bugs and add a lot more test cases for defaulted by Sean Hunt · 13 years ago
  39. 2636197 Reapply the commits that r131401 reverted and add a fix for PR9927. by Argyrios Kyrtzidis · 13 years ago
  40. 81e557b Pulls the common part of the clang-check example into Tooling, to allow new tools to be implemented without duplicating the boilerplate. by Manuel Klimek · 13 years ago
  41. 4ea0304 Revert 131377, 131369 and 131365. 131365 caused PR9927. by Rafael Espindola · 13 years ago
  42. 23c608d Add a method for checking whether a function is one of the reserved global by John McCall · 13 years ago
  43. ffb945f When emitting the destructor for a class with a vtable, if we can determine by Anders Carlsson · 13 years ago
  44. 02c5116 Create proper Objective-C @encoding for C++ classes; fixes rdar://9357400. by Argyrios Kyrtzidis · 13 years ago
  45. 3b5904b Emit an error when trying to @encode an incomplete type. by Argyrios Kyrtzidis · 13 years ago
  46. e1e96a6 Revert 131347. It asserts if the specialization in within a class template: by Francois Pichet · 13 years ago
  47. 1fa8028 In Microsoft mode, allow template function explicit specialization at class scope. by Francois Pichet · 13 years ago
  48. 2b18808 What I hope to be an implementation of defaulted copy assignment operators. by Sean Hunt · 13 years ago
  49. 7f41019 More progress towards defaulted copy assignment by Sean Hunt · 13 years ago
  50. 30de05c Start implementing defaulted copy assignment by Sean Hunt · 13 years ago
  51. c1b5fa4 Introduce __has_extension macro by Peter Collingbourne · 13 years ago
  52. 600d57f Remove the 'unaligned load' builtins now that they're no longer used in the *mmintrin.h files. by Bill Wendling · 13 years ago
  53. 819e9bf refactor CheckForwardProtocolDeclarationForCircularDependency returns by Fariborz Jahanian · 13 years ago
  54. 49634cf Defaulting copy constructors now works reasonably well. by Sean Hunt · 13 years ago
  55. 8cad304 Refactoring of constant expression evaluator by Peter Collingbourne · 13 years ago
  56. 7999991 Add a ConstStmtVisitor class by Peter Collingbourne · 13 years ago
  57. 2bb1101 When determining whether we can make a declaration into a global by Douglas Gregor · 13 years ago
  58. feb375d Implement the __is_trivially_copyable type trait by Sean Hunt · 13 years ago
  59. 2be7e90 Implement defaulting of destructors. by Sean Hunt · 13 years ago
  60. cb45a0f Hrm by Sean Hunt · 13 years ago
  61. 5762c0b Add a method to query whether or not a class has a default constructor declared. by Nick Lewycky · 13 years ago
  62. 96b69a7 After issuing diagnostics on circular protocol list, by Fariborz Jahanian · 13 years ago
  63. 0c96430 LLVM doesn't always optimize away the four loads from this: by Bill Wendling · 13 years ago
  64. 211924b Add clang_CXXMethod_isVirtual() to libclang, from Erik Verbruggen! by Douglas Gregor · 13 years ago
  65. e4246a6 Properly parse the 'default' and 'delete' keywords. by Sean Hunt · 13 years ago
  66. ca46d13 Implement deletion of explicitly defaulted default constructors. by Sean Hunt · 13 years ago
  67. cf41cdd Place "conflicting distributed object modifiers..." warnings under a -W flag. by Ted Kremenek · 13 years ago
  68. cdee3fe Implement implicit deletion of default constructors. by Sean Hunt · 13 years ago
  69. 6a24747 In Microsoft mode, allow pure specifier (=0) on inline functions declared at class scope. by Francois Pichet · 13 years ago
  70. 4405445 Tweak the diagnostics for the C++0x extensions to friend types to note by Douglas Gregor · 13 years ago
  71. f961ea5 Re-do R131114 without breaking code. by Sean Hunt · 13 years ago
  72. c840649 Reimplement Sema::MatchTemplateParametersToScopeSpecifier() based on by Douglas Gregor · 13 years ago
  73. 680404e Revert 131114. This fixes PR9884. by Rafael Espindola · 13 years ago
  74. 001cad9 Further implement defaulting constructors. by Sean Hunt · 13 years ago
  75. a780da7 The last of the trivial constructor changes, make CXXSpecialMember by Sean Hunt · 13 years ago
  76. 7604f64 Ignore const/volatile/restrict qualifiers on anonymous structs and by Douglas Gregor · 13 years ago
  77. 37b8c9e Clean up trivial default constructors now. by Sean Hunt · 13 years ago
  78. 023df37 Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and by Sean Hunt · 13 years ago
  79. 76934c7 Restore an accidentally-deleted word. by Sean Hunt · 13 years ago
  80. 377e1bd Relax the conversion rules for Objective-C GC qualifiers a by Douglas Gregor · 13 years ago
  81. f986038 Add support for _if_exists and __if_not_exists at namespace/global scope. by Francois Pichet · 13 years ago
  82. 52bbe7a Establish a new alignment for an ms_struct bitfield following by Fariborz Jahanian · 13 years ago
  83. 31d375f Keep track of the file ID corresponding to the original file used to by Douglas Gregor · 13 years ago
  84. bb85f8e Per Richard's suggestion, rename DefLoc to DefaultLoc where it appears. by Sean Hunt · 13 years ago
  85. 26dc3e0 Fix diagnostics to start with a lower case letter by Sean Hunt · 13 years ago
  86. 1e86269 Add support for Microsoft __if_exists and __if_not_exists construct inside function definition. by Francois Pichet · 13 years ago
  87. 10620eb Modify some deleted function methods to better reflect reality: by Sean Hunt · 13 years ago
  88. 5f3827c Fix a couple of comments. by Eli Friedman · 13 years ago
  89. dca8ee8 Introduce a new libclang parsing flag, by Douglas Gregor · 13 years ago
  90. 2174d4c Warn when trying to call a pure virtual member function in a class from the class constructor/destructor. Fixes PR7966. by Anders Carlsson · 13 years ago
  91. fe2695e Do defaulted constructors properly. by Sean Hunt · 13 years ago
  92. 5f802e5 Revert r130912 in order to approach defaulted functions from the other by Sean Hunt · 13 years ago
  93. 3e4c6c4 Implement support for C++0x alias templates. by Richard Smith · 13 years ago
  94. 4b81cde When providing code completions for an Objective-C property access, by Douglas Gregor · 13 years ago
  95. e59abb5 Introduce a Diagnostic::Report function that accepts and emits a StoredDiagnostic. by Argyrios Kyrtzidis · 13 years ago
  96. 38165ae Place "incompatible pointer types assigning..." warning under a flag, allowing it to be surgically mapped to an error. by Ted Kremenek · 13 years ago
  97. 9be6e7c Add Checker callback for running a checker at the end of processing an entire TranslationUnit. Patch by Lei Zhang. by Ted Kremenek · 13 years ago
  98. ad7ec12 Implement some framework for defaulted constructors. by Sean Hunt · 13 years ago
  99. 3dc0541 Preserve the full name of the file, so that '-c -o foo.pic.o' produces by Nick Lewycky · 13 years ago
  100. c159870 Change cycle detection to be based off of a warning flag. by Sean Hunt · 13 years ago