1. 826faa2 Replace UsingDecl's SmallPtrSet of UsingShadowDecls with a linked list to avoid leaking memory. by Argyrios Kyrtzidis · 14 years ago
  2. 021aaa4 Add support for Ubuntu Jaunty. by Rafael Espindola · 14 years ago
  3. d7945c6 Friend function declarations can overload with tag declarations. Fixes PR7915. by John McCall · 14 years ago
  4. 78b8105 Diagnose attempst to template using declarations and using directives. by John McCall · 14 years ago
  5. 1397399 make sure #pragma clang is treated the same way as #pragma gcc in -E mode, by Chris Lattner · 14 years ago
  6. 935cd6e Tweak to bitfield-overflow warning: don't warn about storing by John McCall · 14 years ago
  7. 5dac4c2 Typo. by John McCall · 14 years ago
  8. beb22aa Add a warning for implicit truncation of constant values due to by John McCall · 14 years ago
  9. 15952c9 Add a compat note about how Clang doesn't zero-initialize __block local variables. by Daniel Dunbar · 14 years ago
  10. 091f23f Split out -Wconversion warnings about constant precision into their by John McCall · 14 years ago
  11. 73167ec Test moved to its correct place. by Fariborz Jahanian · 14 years ago
  12. ba8bda0 Restore patch reversed in r118475. Fixes // rdar://8632525 by Fariborz Jahanian · 14 years ago
  13. 7ad5d42 Attempt to resolve overloaded functions in comma expressions and by Douglas Gregor · 14 years ago
  14. df81c2c Issues good diagnostic when @end is missing. // rdar://8283484 by Fariborz Jahanian · 14 years ago
  15. 7d64271 tidy up by Chris Lattner · 14 years ago
  16. 729ad83 fix PR8380, a crash on invalid due to an illogical DeclSpec SourceRange being constructed. by Chris Lattner · 14 years ago
  17. ef9b149 Revert the fix for PR8013. by Douglas Gregor · 14 years ago
  18. edfb7ec Simplify code. by Benjamin Kramer · 14 years ago
  19. 4836d6a make the example a bit better, encouraging people to use "suggestions of what to use" in the message :) by Chris Lattner · 14 years ago
  20. a0eabb7 Replace "#if __clang__" by "#if __has_feature(attribute_analyzer_noreturn)" to be consistent with all other snippets on this page. by Ted Kremenek · 14 years ago
  21. ee743f9 Use the right calling convention when mangling names in the Microsoft C++ by Charles Davis · 14 years ago
  22. 9284d21 Add support for soft/hard float options to the Sparc target by Bruno Cardoso Lopes · 14 years ago
  23. 19ddda8 Include System/DataTypes.h in Diagnostic.h to get intptr_t. by Rafael Espindola · 14 years ago
  24. 9a0f2b6 Handle overload resolution when calling an overloaded function set by Douglas Gregor · 14 years ago
  25. 268f89e Make #pragma unused work for static local variables. by Douglas Gregor · 14 years ago
  26. 0b9c22b Remove the use of aliases in outputted code from ObjC (GNU runtime). by David Chisnall · 14 years ago
  27. cb0511c Remove debugging printf. Fix linux build. by Nick Lewycky · 14 years ago
  28. 513038d lib/Lex/PPMacroExpansion.cpp: Fixup to appease MSVC. by NAKAMURA Takumi · 14 years ago
  29. a9b06d4 ntroduce clang_getSpellingLocation() into libclang, to provide the by Douglas Gregor · 14 years ago
  30. 27a31fe Revert r118492, which didn't update all of its tests accordingly by Douglas Gregor · 14 years ago
  31. 6665ffb Appeasing MSVC, take 3 by Douglas Gregor · 14 years ago
  32. b627871 Introduce clang_getSpellingLocation() into libclang, to provide the by Douglas Gregor · 14 years ago
  33. 3d155e6 Introduce the concept of a non-virtual base type to CGRecordLayoutBuilder as a first step towards fixing PR6995. by Anders Carlsson · 14 years ago
  34. b87b29e Try to appease MSVC by Douglas Gregor · 14 years ago
  35. 4980afd Add missing include by Douglas Gregor · 14 years ago
  36. 9b0ba87 Teach code completion not to include out-of-line declarations and by Douglas Gregor · 14 years ago
  37. 4672879 Fix the test for Release. by Argyrios Kyrtzidis · 14 years ago
  38. b2d57ae Add __nullptr as a C++0x nullptr literal, available in C++98 by Douglas Gregor · 14 years ago
  39. 90ba6d5 Fix source locations in unnamed bitfield diagnostic, from Jakub by Douglas Gregor · 14 years ago
  40. 4b0104d libclang and c-index-test can be built on Cygming. by NAKAMURA Takumi · 14 years ago
  41. 3b35a4d c-index-test: Be available on Cygwin by using Win32's logic. by NAKAMURA Takumi · 14 years ago
  42. 5e0fb35 sprintf -> snprintf conversion, from Vladimir Kirillov by Douglas Gregor · 14 years ago
  43. 9d21944 Remove this test for now. by Fariborz Jahanian · 14 years ago
  44. c8c62c4 Reverse patch for // rdar://8632525. It might has broken a build. by Fariborz Jahanian · 14 years ago
  45. 24fce28 Remove space from rdar URIs. by Fariborz Jahanian · 14 years ago
  46. bb0ba0b Teach AttrNonNullChecker about transparent unions. Fixes crash reported in <rdar://problem/8642434>. by Ted Kremenek · 14 years ago
  47. c4ba51f Fix InitListExpr::getSourceRange() to work in the case of no locations for '(' and ')'. This can happen by Ted Kremenek · 14 years ago
  48. 981b6fd Fix miscompilation regarding VLAs; subscription of VLA pointers was incorrect. by Argyrios Kyrtzidis · 14 years ago
  49. 4e3b17c When re-using a vtable slot for the nearest overridden method, just because by John McCall · 14 years ago
  50. 43328e9 Fix warning about unused variable 'Fn' in no-asserts builds. Also reflow this by Nick Lewycky · 14 years ago
  51. 37574f5 Don't lose track of previous-declarations when instantiating a class template. by Nick Lewycky · 14 years ago
  52. ed171b8 Provide a precise builtin declaration for objc_msgSend by Fariborz Jahanian · 14 years ago
  53. b5b38ad 1) Fix a typo in PPCallbacks: It's elif, not elfif. :-) This is by Craig Silverstein · 14 years ago
  54. 04c450c Add CursorVisitor::VisitBinaryOperator() to explicitly handle the case where we can blow out the stack due by Ted Kremenek · 14 years ago
  55. da89264 If an instance method messages is sending to an expression of type Class, by Douglas Gregor · 14 years ago
  56. 4820908 Document Clang's support for attributes on individual enumerators and by John McCall · 14 years ago
  57. fe3a7ea Add a forgotten break. Found by Rafael Espindola! by Roman Divacky · 14 years ago
  58. e6fe9a2 When building a compound literal, check that the base element of the array is complete. by Argyrios Kyrtzidis · 14 years ago
  59. da4ad9f Fixes a rewrite bug, rewriting nested property usage by Fariborz Jahanian · 14 years ago
  60. 67dece7 Use integrated-as for processing .s files on FreeBSD. Copied by Roman Divacky · 14 years ago
  61. 6493cc5 Improve our handling of C++ [class.copy]p3, which specifies that a by Douglas Gregor · 14 years ago
  62. 67e40d4 Only enable the ObjCAtSyncChecker when the translation unit uses Objective-C. by Ted Kremenek · 14 years ago
  63. 3afb977 When attempting reference binding to an overloaded function, also by Douglas Gregor · 14 years ago
  64. 94c8022 Pass "-z relro" as two arguments. This works with both gnu ld and gold. by Rafael Espindola · 14 years ago
  65. 1ddb02c Clean up some of the comments in Index.h (e.g., misnamed or extra parameters in comments). by Ted Kremenek · 14 years ago
  66. 717a2bf Add missing test case for PR8230 by Douglas Gregor · 14 years ago
  67. 8e96043 Properly diagnose invalid casts to function references. Patch by by Douglas Gregor · 14 years ago
  68. fd4524b test/CodeGenCXX/rtti-linkage.cpp: Get rid of sort(1) to remove XFAIL: win32. by NAKAMURA Takumi · 14 years ago
  69. dda5b92 Use the integrated assembler when procession .s files on OpenBSD and Linux. by Rafael Espindola · 14 years ago
  70. 910f800 Remove broken support for variadic templates, along with the various by Douglas Gregor · 14 years ago
  71. dc1b76d Add support for -rdynamic. by Rafael Espindola · 14 years ago
  72. c1da981 Use ld directly on linux. Changes from the previous try: by Rafael Espindola · 14 years ago
  73. dfdfc58 A union cannot contain static data members or data members of reference type. by Anders Carlsson · 14 years ago
  74. c198f61 Change the StringSet used by CalculateHiddenNames() to use a BumpPtrAllocator. by Ted Kremenek · 14 years ago
  75. 7a054b1 Fix memory leak of IdentifierIterator object. by Ted Kremenek · 14 years ago
  76. 4468078 ARM EH uses a different personality function in C. by John McCall · 14 years ago
  77. bdacf3c Add a comment. by Argyrios Kyrtzidis · 14 years ago
  78. 6242599 Don't warn when matching %p to nullptr. by Anders Carlsson · 14 years ago
  79. 3030eb8 Simplify the logic for emitting guard variables for template static by John McCall · 14 years ago
  80. bb6afcb Fix a bug where we were recursing on friend decls for friend by Craig Silverstein · 14 years ago
  81. 08985b9 Add PPCallbacks for #if/#ifdef/etc. by Craig Silverstein · 14 years ago
  82. 2c4792c When determining which template partial specialization is more specialized, by Argyrios Kyrtzidis · 14 years ago
  83. a43064c When searching for an instantiated declaration requires instantiation by Douglas Gregor · 14 years ago
  84. 464b2f0 Check for an invalid field earlier in a constructor's initialization by Douglas Gregor · 14 years ago
  85. 60f7684 Don't write an empty DIAG_USER_MAPPINGS record. by Argyrios Kyrtzidis · 14 years ago
  86. f41d3be Read/write from/to PCH the diagnostic mappings that the user set so that e.g. #pragma clang diagnostic can be used in a PCH. by Argyrios Kyrtzidis · 14 years ago
  87. 2e57494 Initialize the array with the "C++ way". by Argyrios Kyrtzidis · 14 years ago
  88. 93798e2 Teach clang_getCursorReferenced() that a by Douglas Gregor · 14 years ago
  89. 752c2e9 Put class into an anonymous namespace. by Benjamin Kramer · 14 years ago
  90. 8188e5f Proper rewriting of block envokation with by Fariborz Jahanian · 14 years ago
  91. abdce7a libclang: Enable requesting a larger stack for several libclang entry points by Daniel Dunbar · 14 years ago
  92. 343e6ff Expressions of type std::nullptr_t can be used as sentinels. by Anders Carlsson · 14 years ago
  93. bf44c3b libclang: Add some support for running certain entry points in a "safety" by Daniel Dunbar · 14 years ago
  94. 9e1ebdd Fix 80-col violas. by Daniel Dunbar · 14 years ago
  95. c8df0b6 Implement [over.ics.rank]p4: A conversion that does not convert an std::nullptr_t to bool is better than one than does. by Anders Carlsson · 14 years ago
  96. 8429491 Adjust return type of thread_runner. by Benjamin Kramer · 14 years ago
  97. 21e413f Use the real keyword location when rebuilding an elaborated type instead of by John McCall · 14 years ago
  98. c9d5573 Pass a -I flag when compiling nullptr.cpp so the typeinfo header can be found. This should fix the errors seen on the bot. by Anders Carlsson · 14 years ago
  99. c80117e Don't be so eager to replace UsingDecls in a DeclContext's lookup table; by Argyrios Kyrtzidis · 14 years ago
  100. 2bd6250 std::nullptr_t is a fundamental type for RTTI purposes. by Anders Carlsson · 14 years ago