1. d93256e Introduce serialization and deserialization of diagnostic information by Douglas Gregor · 15 years ago
  2. a8d8fec Add position of conversion specifier character to 'ConversionSpecifier'. by Ted Kremenek · 15 years ago
  3. d2dcece Rename namespace clang::printf to clang::analyze_printf to avoid problems where the reference to 'printf' is ambiguous. by Ted Kremenek · 15 years ago
  4. 7e20ffe Fixes a rewrite bug rewriting nested ivars reference. (Radar 7583971). by Fariborz Jahanian · 15 years ago
  5. d5f2096 Allow HandleFormatSpecifier() to indicate that no more processing of the format string is desired. by Ted Kremenek · 15 years ago
  6. 936ea3b Switch the remaining diagnostic printing in CIndex over to the by Douglas Gregor · 15 years ago
  7. c7cbb9b Add '@' conversion specifier. by Ted Kremenek · 15 years ago
  8. 5352ac0 Implement a diagnostics callback for the C interface to Clang, so that by Douglas Gregor · 15 years ago
  9. 8f0a1c7 Add skeleton for a more structured way to analyzing pring format by Ted Kremenek · 15 years ago
  10. 78acdbf Move more naming conventions logic out of the retain/release checker to CocoaConventions.h. by Ted Kremenek · 15 years ago
  11. 8b752f1 Change the return type of ASTContext::getDeclAlignInBytes() to CharUnits and, by Ken Dyck · 15 years ago
  12. 9d883b5 Silence a GCC warning about uninitialized variables. The first user of this by Chandler Carruth · 15 years ago
  13. a64e89b Start pulling out pieces of the monolithic retain/release checker into by Ted Kremenek · 15 years ago
  14. 3a18917 It's not Explicit anymore. by Anders Carlsson · 15 years ago
  15. c373d48 Implement access control for overloaded functions. Suppress access control by John McCall · 15 years ago
  16. f7b3374 Support -marm by treating it as an alias for -mno-thumb. by Daniel Dunbar · 15 years ago
  17. 5cc0251 Driver/Darwin: Disallow -m{macosx,iphoneos}-version-min as -Xarch arguments. by Daniel Dunbar · 15 years ago
  18. 13e635c Add const version of ObjCMethodDecl::getCanonicalDecl(). by Ted Kremenek · 15 years ago
  19. fee9081 Teach RegionStore to handle initialization of incomplete arrays in structures using a compound value. Fixes <rdar://problem/7515938>. by Ted Kremenek · 15 years ago
  20. 9705309 Move 'LocalCheckers.h' to the 'Checkers' subdirectory. by Ted Kremenek · 15 years ago
  21. f12d319 Move 'include/Checkers/PathSensitive/Checkers' directory to 'include/Checkers'. by Ted Kremenek · 15 years ago
  22. 013af39 Patch to add 'volatile' to first argument of all by Fariborz Jahanian · 15 years ago
  23. 7783bfc Bring some semblance of order into Decl.h and Decl.cpp. While at it, fix some typo comments and remove an unused and unimplemented function prototype. No functionality change. by Sebastian Redl · 15 years ago
  24. 16b55a7 Implement 'clang_getInclusions()' in CIndex. This API allows clients to walk the set of files included in a translation unit via the C API. by Ted Kremenek · 15 years ago
  25. 46766dc Eliminate clang_getInstantiationLocationOffset(), and instead add an by Douglas Gregor · 15 years ago
  26. 0045e9f Implement clang_annotateTokens(), which associates cursors with each by Douglas Gregor · 15 years ago
  27. 3bb9269 Use the right definition when emitting a global variable. Fixes PR5564. by Anders Carlsson · 15 years ago
  28. 16e20cc Correct cut-and-paste error in doxygen comment for newly introduced by Ken Dyck · 15 years ago
  29. 86fa431 Add getTypeAlignInChars() for use in code that works in alignments in character by Ken Dyck · 15 years ago
  30. fc8ea23 Introduce a CIndex API for lexing the raw tokens within a given source by Douglas Gregor · 15 years ago
  31. b896f62 Replace inheritance of RegionRawOffset from std::pair with two private member by Ken Dyck · 15 years ago
  32. 7534516 Avoid some unnecessary copying of unresolved lookup results. by John McCall · 15 years ago
  33. 6e26689 Preserve access bits through overload resolution much better. Some by John McCall · 15 years ago
  34. e69517c Introduce clang_getInstantiationLocationOffset(), which decomposes a by Douglas Gregor · 15 years ago
  35. 816bc31 Driver/Darwin: Honor IPHONEOS_DEPLOYMENT_TARGET. by Daniel Dunbar · 15 years ago
  36. 7a6ae74 Warn on top-level 'asm volatile' (instead of misparsing it). by John McCall · 15 years ago
  37. 6b67630 Move BugReporter.h, PathDiagnostic.h, and BugType.h to 'include/Checker/BugReporter' by Ted Kremenek · 15 years ago
  38. 326be56 Add missing header. by Ted Kremenek · 15 years ago
  39. 1309f9a Split libAnalysis into two libraries: libAnalysis and libChecker. by Ted Kremenek · 15 years ago
  40. 3bd54cc ASTUnit: Don't check that input files exist when parsing ASTs from the command by Daniel Dunbar · 15 years ago
  41. fd9f234 Update comment. by Daniel Dunbar · 15 years ago
  42. 7a6e13a Fix a pretty bad bug where if a constructor (or conversion function) was marked as 'explicit', but then defined out-of-line, we would not treat it as being explicit. by Anders Carlsson · 15 years ago
  43. 0757c8c Implement [dcl.fct.spec]p6. by Anders Carlsson · 15 years ago
  44. 8a8fa25 Ok, turn back off -Wunreachable-code by default. by Mike Stump · 15 years ago
  45. 8b00be5 Mark PartialDiagnostic.h as a C++ header by Sebastian Redl · 15 years ago
  46. 703e394 Implement instantiation of AsmStmts (Crazy, I know) by Anders Carlsson · 15 years ago
  47. a57259e Tweak clang_visitChildren comment. by Daniel Dunbar · 15 years ago
  48. 1efcf3d Index.h: Tweak comments, delete trailing whitespace, fix a few typos, etc. by Daniel Dunbar · 15 years ago
  49. 7e52de4 fix PR6034, a crash on invalid where the switch stack would get unbalanced. by Chris Lattner · 15 years ago
  50. 31819f5 add a prototype for __builtin_fpclassify. We don't know how to by Chris Lattner · 15 years ago
  51. 1b36a2f Use new initialization code when dealing with [dcl.init.aggr]p12. This fixes the bug where array elements and member initializers weren't copied correctly. by Anders Carlsson · 15 years ago
  52. b9ea98e Temporary flip default for -Wunreachable-code so some bots can test it by Mike Stump · 15 years ago
  53. e6dddfd Add bzero builtin; this should help codegen quality for code using this by Eli Friedman · 15 years ago
  54. e876419 Fix typo. by Anders Carlsson · 15 years ago
  55. 23e1ad0 Add doxygen comment to clang_getClangVersion(). by Ted Kremenek · 15 years ago
  56. 258b203 Produce a special diagnostic when users call a function with an argument of by John McCall · 15 years ago
  57. a729bbb Fix the EntityKind order so that all entity kinds that can be copied (using copy constructors) come first. Also, fix a bug where EK_New was left out of the err_init_conversion_failed diagnostic (It is now reported as 'new value'). Please review Doug :) by Anders Carlsson · 15 years ago
  58. 0d13f6f Created __builtin___NSStringMakeConstantString() builtin, which generates constant Objective-C strings. by David Chisnall · 15 years ago
  59. a18f1b8 Rename getClangFullVendorVersion() to getClangFullVersion(). by Ted Kremenek · 15 years ago
  60. 92f8831 Implement elementary access control. by John McCall · 15 years ago
  61. 4db64a4 Extend clang_createTranslationUnitFromSourceFile() to support creating by Douglas Gregor · 15 years ago
  62. 04bb716 Add 'clang_getClangVersion()' function to CIndex. This exposes the full Clang version string through the CIndex API. by Ted Kremenek · 15 years ago
  63. 3687a5d Move version string generation (e.g., "clang 1.1 ...") to libBasic/Version.cpp, getClangFullVendorVersion(). by Ted Kremenek · 15 years ago
  64. c42fefa Improve content and structure of the Doxygen documentation for the by Douglas Gregor · 15 years ago
  65. f7a96a3 (1) Rename getClangSubversionRevision() to getClangRevision(), and by Ted Kremenek · 15 years ago
  66. b979034 Yet more CIndex API cleanup: by Douglas Gregor · 15 years ago
  67. 5b4ec63 Rename pch::SVN_BRANCH_REVISION to pch::VERSION_CONTROL_BRANCH_REVISION. by Ted Kremenek · 15 years ago
  68. 517e676 Rename getClangSubversionPath() -> getClangRepositoryPath() and have it return a StringRef. by Ted Kremenek · 15 years ago
  69. 33e9abd Teach CIndex's cursor visitor to restrict its traversal to a specific by Douglas Gregor · 15 years ago
  70. b79b117 Process cast according to the cast kind. Prepare for more specific cast by Zhongxing Xu · 15 years ago
  71. eec9910 Driver/Darwin: Update tool chain to use static clang_rt libraries provided by by Daniel Dunbar · 15 years ago
  72. 1ef2fc1 Teach the cursor visitor to walk all of the C and Objective-C by Douglas Gregor · 15 years ago
  73. f45b646 revert my patch for rdar://7520940 that warns when a published header by Chris Lattner · 15 years ago
  74. 0380043 Due to local reversions and re-patching, I accidentally had multiple copies by John McCall · 15 years ago
  75. 2d6ceab Improve unreachable code warnings for with respect to dead functional casts in C++. by Mike Stump · 15 years ago
  76. 71842cc Allocate the 'Protocols' array in ObjCInterfaceType and by Ted Kremenek · 15 years ago
  77. d8265b8 Fixes a comment. by Fariborz Jahanian · 15 years ago
  78. d050240 Patch to implement rewriting of properties. Fixes radar 7562952. by Fariborz Jahanian · 15 years ago
  79. 7d0d40e Introduce type references into the C API, capturing references to by Douglas Gregor · 15 years ago
  80. 4c45aa1 Speed up compilation by avoiding generating exceptional edges from by Mike Stump · 15 years ago
  81. b978a44 Add infrastructure to add base initializers and member initializers to by Mike Stump · 15 years ago
  82. b2cd487 Stash a CXXUnit pointer into each cursor. This allows us to simplify by Douglas Gregor · 15 years ago
  83. f552544 Yet more Doxygen-comment tweaking in the CIndex library. by Douglas Gregor · 15 years ago
  84. 7f17376 Improve Doxygen documentation for the CIndex library, somewhat. by Douglas Gregor · 15 years ago
  85. 7264fa16 Change LLVM/clang #includes to use quotes, not angle-brackets. Just a think-o by John McCall · 15 years ago
  86. 04d1dd4 Kill CXEntity and CXDecl. The first has never been used, while the by Douglas Gregor · 15 years ago
  87. 46460a6 First pass at collecting access-specifier information along inheritance paths. by John McCall · 15 years ago
  88. 78205d4 Kill some CXDecl-related APIs that have been superceded by CXCursor-based APIs. by Douglas Gregor · 15 years ago
  89. 68372aa Kill CXStmt. It isn't being used anywhere, and has no future. by Douglas Gregor · 15 years ago
  90. 002a528 Kill clang_loadDeclaration() and clang_loadTranslationUnit(). by Douglas Gregor · 15 years ago
  91. d313512 Use sizeof() instead of hard-coding a size for WrittenBuiltinSpecs, eek! by Daniel Dunbar · 15 years ago
  92. b1373d0 Introduce a new, cursor-based traversal function that visits the by Douglas Gregor · 15 years ago
  93. 3ad230e Settled rule on warning on unimplemented property in by Fariborz Jahanian · 15 years ago
  94. 3ea5cf8 reduce redundant are's by Chris Lattner · 15 years ago
  95. fb26025 Fix a typo pointed about by gabor. by Chandler Carruth · 15 years ago
  96. 103b71c Move the MacroBuilder utilitiy to its own header. Update references. by Chandler Carruth · 15 years ago
  97. 8a32907 Fix a layering issue between Basic and FE by moving a utility class into Basic. by Chandler Carruth · 15 years ago
  98. 225c417 Driver: Lift clang resource directory computation to the Driver object. by Daniel Dunbar · 15 years ago
  99. b377c98 Make UnresolvedSet.h standalone. by John McCall · 15 years ago
  100. 20d416c Attempt to improve CIndex Doxygen organization, although I can't actually test this locally by Douglas Gregor · 15 years ago