1. f88c8e0 Switch Sema over to using the new implementation of format string by Ted Kremenek · 15 years ago
  2. 4dcb18f Enhancements to the alternate (WIP) format string checking: by Ted Kremenek · 15 years ago
  3. ef06e24 Fix reference-binding when we have a reference to const volatile type; by Douglas Gregor · 15 years ago
  4. ddc6b66 Fix typo found by clang++. Yay for -Wuninitialized. by Benjamin Kramer · 15 years ago
  5. 4e1c181 Add getters. by Anders Carlsson · 15 years ago
  6. e6d2a53 Simplify EmitLValueForField - we can get whether the field is part of a union or not from the FieldDecl (through its DeclContext). by Anders Carlsson · 15 years ago
  7. 808015a Alternate format string checking: issue warnings for incomplete format specifiers. by Ted Kremenek · 15 years ago
  8. 26ac2e0 Alternate format string checking: issue a warning for invalid conversion specifiers. by Ted Kremenek · 15 years ago
  9. eb60edf Add an CXXBindReferenceExpr (not used just yet). by Anders Carlsson · 15 years ago
  10. 80cd64a Do a little magic and a little greasework to make it much more efficient by John McCall · 15 years ago
  11. e82d804 Alternate format string checking: warn of '%n' as being potentially insecure. by Ted Kremenek · 15 years ago
  12. 0d27735 Add precision/field width checking to AlternateCheckPrintfString(). by Ted Kremenek · 15 years ago
  13. 51c6d38 When printing diagnostics in c-index-test, also print source ranges by Douglas Gregor · 15 years ago
  14. 233a641 Access control for surrogate function calls. Required a moderately gross hack by John McCall · 15 years ago
  15. d93256e Introduce serialization and deserialization of diagnostic information by Douglas Gregor · 15 years ago
  16. a8d8fec Add position of conversion specifier character to 'ConversionSpecifier'. by Ted Kremenek · 15 years ago
  17. 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
  18. 7e20ffe Fixes a rewrite bug rewriting nested ivars reference. (Radar 7583971). by Fariborz Jahanian · 15 years ago
  19. d5f2096 Allow HandleFormatSpecifier() to indicate that no more processing of the format string is desired. by Ted Kremenek · 15 years ago
  20. 936ea3b Switch the remaining diagnostic printing in CIndex over to the by Douglas Gregor · 15 years ago
  21. c7cbb9b Add '@' conversion specifier. by Ted Kremenek · 15 years ago
  22. 5352ac0 Implement a diagnostics callback for the C interface to Clang, so that by Douglas Gregor · 15 years ago
  23. 8f0a1c7 Add skeleton for a more structured way to analyzing pring format by Ted Kremenek · 15 years ago
  24. 78acdbf Move more naming conventions logic out of the retain/release checker to CocoaConventions.h. by Ted Kremenek · 15 years ago
  25. 8b752f1 Change the return type of ASTContext::getDeclAlignInBytes() to CharUnits and, by Ken Dyck · 15 years ago
  26. 9d883b5 Silence a GCC warning about uninitialized variables. The first user of this by Chandler Carruth · 15 years ago
  27. a64e89b Start pulling out pieces of the monolithic retain/release checker into by Ted Kremenek · 15 years ago
  28. 3a18917 It's not Explicit anymore. by Anders Carlsson · 15 years ago
  29. c373d48 Implement access control for overloaded functions. Suppress access control by John McCall · 15 years ago
  30. f7b3374 Support -marm by treating it as an alias for -mno-thumb. by Daniel Dunbar · 15 years ago
  31. 5cc0251 Driver/Darwin: Disallow -m{macosx,iphoneos}-version-min as -Xarch arguments. by Daniel Dunbar · 15 years ago
  32. 13e635c Add const version of ObjCMethodDecl::getCanonicalDecl(). by Ted Kremenek · 15 years ago
  33. 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
  34. 9705309 Move 'LocalCheckers.h' to the 'Checkers' subdirectory. by Ted Kremenek · 15 years ago
  35. f12d319 Move 'include/Checkers/PathSensitive/Checkers' directory to 'include/Checkers'. by Ted Kremenek · 15 years ago
  36. 013af39 Patch to add 'volatile' to first argument of all by Fariborz Jahanian · 15 years ago
  37. 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
  38. 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
  39. 46766dc Eliminate clang_getInstantiationLocationOffset(), and instead add an by Douglas Gregor · 15 years ago
  40. 0045e9f Implement clang_annotateTokens(), which associates cursors with each by Douglas Gregor · 15 years ago
  41. 3bb9269 Use the right definition when emitting a global variable. Fixes PR5564. by Anders Carlsson · 15 years ago
  42. 16e20cc Correct cut-and-paste error in doxygen comment for newly introduced by Ken Dyck · 15 years ago
  43. 86fa431 Add getTypeAlignInChars() for use in code that works in alignments in character by Ken Dyck · 15 years ago
  44. fc8ea23 Introduce a CIndex API for lexing the raw tokens within a given source by Douglas Gregor · 15 years ago
  45. b896f62 Replace inheritance of RegionRawOffset from std::pair with two private member by Ken Dyck · 15 years ago
  46. 7534516 Avoid some unnecessary copying of unresolved lookup results. by John McCall · 15 years ago
  47. 6e26689 Preserve access bits through overload resolution much better. Some by John McCall · 15 years ago
  48. e69517c Introduce clang_getInstantiationLocationOffset(), which decomposes a by Douglas Gregor · 15 years ago
  49. 816bc31 Driver/Darwin: Honor IPHONEOS_DEPLOYMENT_TARGET. by Daniel Dunbar · 15 years ago
  50. 7a6ae74 Warn on top-level 'asm volatile' (instead of misparsing it). by John McCall · 15 years ago
  51. 6b67630 Move BugReporter.h, PathDiagnostic.h, and BugType.h to 'include/Checker/BugReporter' by Ted Kremenek · 15 years ago
  52. 326be56 Add missing header. by Ted Kremenek · 15 years ago
  53. 1309f9a Split libAnalysis into two libraries: libAnalysis and libChecker. by Ted Kremenek · 15 years ago
  54. 3bd54cc ASTUnit: Don't check that input files exist when parsing ASTs from the command by Daniel Dunbar · 15 years ago
  55. fd9f234 Update comment. by Daniel Dunbar · 15 years ago
  56. 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
  57. 0757c8c Implement [dcl.fct.spec]p6. by Anders Carlsson · 15 years ago
  58. 8a8fa25 Ok, turn back off -Wunreachable-code by default. by Mike Stump · 15 years ago
  59. 8b00be5 Mark PartialDiagnostic.h as a C++ header by Sebastian Redl · 15 years ago
  60. 703e394 Implement instantiation of AsmStmts (Crazy, I know) by Anders Carlsson · 15 years ago
  61. a57259e Tweak clang_visitChildren comment. by Daniel Dunbar · 15 years ago
  62. 1efcf3d Index.h: Tweak comments, delete trailing whitespace, fix a few typos, etc. by Daniel Dunbar · 15 years ago
  63. 7e52de4 fix PR6034, a crash on invalid where the switch stack would get unbalanced. by Chris Lattner · 15 years ago
  64. 31819f5 add a prototype for __builtin_fpclassify. We don't know how to by Chris Lattner · 15 years ago
  65. 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
  66. b9ea98e Temporary flip default for -Wunreachable-code so some bots can test it by Mike Stump · 15 years ago
  67. e6dddfd Add bzero builtin; this should help codegen quality for code using this by Eli Friedman · 15 years ago
  68. e876419 Fix typo. by Anders Carlsson · 15 years ago
  69. 23e1ad0 Add doxygen comment to clang_getClangVersion(). by Ted Kremenek · 15 years ago
  70. 258b203 Produce a special diagnostic when users call a function with an argument of by John McCall · 15 years ago
  71. 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
  72. 0d13f6f Created __builtin___NSStringMakeConstantString() builtin, which generates constant Objective-C strings. by David Chisnall · 15 years ago
  73. a18f1b8 Rename getClangFullVendorVersion() to getClangFullVersion(). by Ted Kremenek · 15 years ago
  74. 92f8831 Implement elementary access control. by John McCall · 15 years ago
  75. 4db64a4 Extend clang_createTranslationUnitFromSourceFile() to support creating by Douglas Gregor · 15 years ago
  76. 04bb716 Add 'clang_getClangVersion()' function to CIndex. This exposes the full Clang version string through the CIndex API. by Ted Kremenek · 15 years ago
  77. 3687a5d Move version string generation (e.g., "clang 1.1 ...") to libBasic/Version.cpp, getClangFullVendorVersion(). by Ted Kremenek · 15 years ago
  78. c42fefa Improve content and structure of the Doxygen documentation for the by Douglas Gregor · 15 years ago
  79. f7a96a3 (1) Rename getClangSubversionRevision() to getClangRevision(), and by Ted Kremenek · 15 years ago
  80. b979034 Yet more CIndex API cleanup: by Douglas Gregor · 15 years ago
  81. 5b4ec63 Rename pch::SVN_BRANCH_REVISION to pch::VERSION_CONTROL_BRANCH_REVISION. by Ted Kremenek · 15 years ago
  82. 517e676 Rename getClangSubversionPath() -> getClangRepositoryPath() and have it return a StringRef. by Ted Kremenek · 15 years ago
  83. 33e9abd Teach CIndex's cursor visitor to restrict its traversal to a specific by Douglas Gregor · 15 years ago
  84. b79b117 Process cast according to the cast kind. Prepare for more specific cast by Zhongxing Xu · 15 years ago
  85. eec9910 Driver/Darwin: Update tool chain to use static clang_rt libraries provided by by Daniel Dunbar · 15 years ago
  86. 1ef2fc1 Teach the cursor visitor to walk all of the C and Objective-C by Douglas Gregor · 15 years ago
  87. f45b646 revert my patch for rdar://7520940 that warns when a published header by Chris Lattner · 15 years ago
  88. 0380043 Due to local reversions and re-patching, I accidentally had multiple copies by John McCall · 15 years ago
  89. 2d6ceab Improve unreachable code warnings for with respect to dead functional casts in C++. by Mike Stump · 15 years ago
  90. 71842cc Allocate the 'Protocols' array in ObjCInterfaceType and by Ted Kremenek · 15 years ago
  91. d8265b8 Fixes a comment. by Fariborz Jahanian · 15 years ago
  92. d050240 Patch to implement rewriting of properties. Fixes radar 7562952. by Fariborz Jahanian · 15 years ago
  93. 7d0d40e Introduce type references into the C API, capturing references to by Douglas Gregor · 15 years ago
  94. 4c45aa1 Speed up compilation by avoiding generating exceptional edges from by Mike Stump · 15 years ago
  95. b978a44 Add infrastructure to add base initializers and member initializers to by Mike Stump · 15 years ago
  96. b2cd487 Stash a CXXUnit pointer into each cursor. This allows us to simplify by Douglas Gregor · 15 years ago
  97. f552544 Yet more Doxygen-comment tweaking in the CIndex library. by Douglas Gregor · 15 years ago
  98. 7f17376 Improve Doxygen documentation for the CIndex library, somewhat. by Douglas Gregor · 15 years ago
  99. 7264fa16 Change LLVM/clang #includes to use quotes, not angle-brackets. Just a think-o by John McCall · 15 years ago
  100. 04d1dd4 Kill CXEntity and CXDecl. The first has never been used, while the by Douglas Gregor · 15 years ago