1. 6e26689 Preserve access bits through overload resolution much better. Some by John McCall · 15 years ago
  2. e69517c Introduce clang_getInstantiationLocationOffset(), which decomposes a by Douglas Gregor · 15 years ago
  3. 816bc31 Driver/Darwin: Honor IPHONEOS_DEPLOYMENT_TARGET. by Daniel Dunbar · 15 years ago
  4. 7a6ae74 Warn on top-level 'asm volatile' (instead of misparsing it). by John McCall · 15 years ago
  5. 6b67630 Move BugReporter.h, PathDiagnostic.h, and BugType.h to 'include/Checker/BugReporter' by Ted Kremenek · 15 years ago
  6. 326be56 Add missing header. by Ted Kremenek · 15 years ago
  7. 1309f9a Split libAnalysis into two libraries: libAnalysis and libChecker. by Ted Kremenek · 15 years ago
  8. 3bd54cc ASTUnit: Don't check that input files exist when parsing ASTs from the command by Daniel Dunbar · 15 years ago
  9. fd9f234 Update comment. by Daniel Dunbar · 15 years ago
  10. 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
  11. 0757c8c Implement [dcl.fct.spec]p6. by Anders Carlsson · 15 years ago
  12. 8a8fa25 Ok, turn back off -Wunreachable-code by default. by Mike Stump · 15 years ago
  13. 8b00be5 Mark PartialDiagnostic.h as a C++ header by Sebastian Redl · 15 years ago
  14. 703e394 Implement instantiation of AsmStmts (Crazy, I know) by Anders Carlsson · 15 years ago
  15. a57259e Tweak clang_visitChildren comment. by Daniel Dunbar · 15 years ago
  16. 1efcf3d Index.h: Tweak comments, delete trailing whitespace, fix a few typos, etc. by Daniel Dunbar · 15 years ago
  17. 7e52de4 fix PR6034, a crash on invalid where the switch stack would get unbalanced. by Chris Lattner · 15 years ago
  18. 31819f5 add a prototype for __builtin_fpclassify. We don't know how to by Chris Lattner · 15 years ago
  19. 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
  20. b9ea98e Temporary flip default for -Wunreachable-code so some bots can test it by Mike Stump · 15 years ago
  21. e6dddfd Add bzero builtin; this should help codegen quality for code using this by Eli Friedman · 15 years ago
  22. e876419 Fix typo. by Anders Carlsson · 15 years ago
  23. 23e1ad0 Add doxygen comment to clang_getClangVersion(). by Ted Kremenek · 15 years ago
  24. 258b203 Produce a special diagnostic when users call a function with an argument of by John McCall · 15 years ago
  25. 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
  26. 0d13f6f Created __builtin___NSStringMakeConstantString() builtin, which generates constant Objective-C strings. by David Chisnall · 15 years ago
  27. a18f1b8 Rename getClangFullVendorVersion() to getClangFullVersion(). by Ted Kremenek · 15 years ago
  28. 92f8831 Implement elementary access control. by John McCall · 15 years ago
  29. 4db64a4 Extend clang_createTranslationUnitFromSourceFile() to support creating by Douglas Gregor · 15 years ago
  30. 04bb716 Add 'clang_getClangVersion()' function to CIndex. This exposes the full Clang version string through the CIndex API. by Ted Kremenek · 15 years ago
  31. 3687a5d Move version string generation (e.g., "clang 1.1 ...") to libBasic/Version.cpp, getClangFullVendorVersion(). by Ted Kremenek · 15 years ago
  32. c42fefa Improve content and structure of the Doxygen documentation for the by Douglas Gregor · 15 years ago
  33. f7a96a3 (1) Rename getClangSubversionRevision() to getClangRevision(), and by Ted Kremenek · 15 years ago
  34. b979034 Yet more CIndex API cleanup: by Douglas Gregor · 15 years ago
  35. 5b4ec63 Rename pch::SVN_BRANCH_REVISION to pch::VERSION_CONTROL_BRANCH_REVISION. by Ted Kremenek · 15 years ago
  36. 517e676 Rename getClangSubversionPath() -> getClangRepositoryPath() and have it return a StringRef. by Ted Kremenek · 15 years ago
  37. 33e9abd Teach CIndex's cursor visitor to restrict its traversal to a specific by Douglas Gregor · 15 years ago
  38. b79b117 Process cast according to the cast kind. Prepare for more specific cast by Zhongxing Xu · 15 years ago
  39. eec9910 Driver/Darwin: Update tool chain to use static clang_rt libraries provided by by Daniel Dunbar · 15 years ago
  40. 1ef2fc1 Teach the cursor visitor to walk all of the C and Objective-C by Douglas Gregor · 15 years ago
  41. f45b646 revert my patch for rdar://7520940 that warns when a published header by Chris Lattner · 15 years ago
  42. 0380043 Due to local reversions and re-patching, I accidentally had multiple copies by John McCall · 15 years ago
  43. 2d6ceab Improve unreachable code warnings for with respect to dead functional casts in C++. by Mike Stump · 15 years ago
  44. 71842cc Allocate the 'Protocols' array in ObjCInterfaceType and by Ted Kremenek · 15 years ago
  45. d8265b8 Fixes a comment. by Fariborz Jahanian · 15 years ago
  46. d050240 Patch to implement rewriting of properties. Fixes radar 7562952. by Fariborz Jahanian · 15 years ago
  47. 7d0d40e Introduce type references into the C API, capturing references to by Douglas Gregor · 15 years ago
  48. 4c45aa1 Speed up compilation by avoiding generating exceptional edges from by Mike Stump · 15 years ago
  49. b978a44 Add infrastructure to add base initializers and member initializers to by Mike Stump · 15 years ago
  50. b2cd487 Stash a CXXUnit pointer into each cursor. This allows us to simplify by Douglas Gregor · 15 years ago
  51. f552544 Yet more Doxygen-comment tweaking in the CIndex library. by Douglas Gregor · 15 years ago
  52. 7f17376 Improve Doxygen documentation for the CIndex library, somewhat. by Douglas Gregor · 15 years ago
  53. 7264fa16 Change LLVM/clang #includes to use quotes, not angle-brackets. Just a think-o by John McCall · 15 years ago
  54. 04d1dd4 Kill CXEntity and CXDecl. The first has never been used, while the by Douglas Gregor · 15 years ago
  55. 46460a6 First pass at collecting access-specifier information along inheritance paths. by John McCall · 15 years ago
  56. 78205d4 Kill some CXDecl-related APIs that have been superceded by CXCursor-based APIs. by Douglas Gregor · 15 years ago
  57. 68372aa Kill CXStmt. It isn't being used anywhere, and has no future. by Douglas Gregor · 15 years ago
  58. 002a528 Kill clang_loadDeclaration() and clang_loadTranslationUnit(). by Douglas Gregor · 15 years ago
  59. d313512 Use sizeof() instead of hard-coding a size for WrittenBuiltinSpecs, eek! by Daniel Dunbar · 15 years ago
  60. b1373d0 Introduce a new, cursor-based traversal function that visits the by Douglas Gregor · 15 years ago
  61. 3ad230e Settled rule on warning on unimplemented property in by Fariborz Jahanian · 15 years ago
  62. 3ea5cf8 reduce redundant are's by Chris Lattner · 15 years ago
  63. fb26025 Fix a typo pointed about by gabor. by Chandler Carruth · 15 years ago
  64. 103b71c Move the MacroBuilder utilitiy to its own header. Update references. by Chandler Carruth · 15 years ago
  65. 8a32907 Fix a layering issue between Basic and FE by moving a utility class into Basic. by Chandler Carruth · 15 years ago
  66. 225c417 Driver: Lift clang resource directory computation to the Driver object. by Daniel Dunbar · 15 years ago
  67. b377c98 Make UnresolvedSet.h standalone. by John McCall · 15 years ago
  68. 20d416c Attempt to improve CIndex Doxygen organization, although I can't actually test this locally by Douglas Gregor · 15 years ago
  69. eec51cf Give UnresolvedSet the ability to store access specifiers for each declaration. by John McCall · 15 years ago
  70. e0356b1 Kill off clang_getDeclColumn, clang_getDeclExtent, clang_getDeclLine, by Douglas Gregor · 15 years ago
  71. 7eaa8ae Introduce a special cursor kind for the translation unit, to serve as by Douglas Gregor · 15 years ago
  72. 36103f4 CXCursor_UnexposedDecl to the first declaration kind by Douglas Gregor · 15 years ago
  73. e0ca4ba Kill CXCursor_ObjCSelectorRef, CXCursor_VarRef, CXCursor_FunctionRef, by Douglas Gregor · 15 years ago
  74. 97b9872 Extend the CIndex API with direct support for expressions and by Douglas Gregor · 15 years ago
  75. a3899eb Implement goto inside of blocks. by Mike Stump · 15 years ago
  76. 1d7d8d6 The type of a compound literal expression is not necessarily the same as the by John McCall · 15 years ago
  77. e8c7043 Kill the unused and unnecessary CXCursor_MemberRef, twin to the by Douglas Gregor · 15 years ago
  78. 5a5ec3a Kill CXCursor_ObjCIvarRef. Such cursors could never be created, and by Douglas Gregor · 15 years ago
  79. 3012213 Introduce the notion of an "unexposed" declaration into the CIndex by Douglas Gregor · 15 years ago
  80. 079bd72 Add CFG support for the start and end of scopes and infrastructure for by Mike Stump · 15 years ago
  81. 1db19de Rework the CXSourceLocation and CXSourceRange APIs. They are now by Douglas Gregor · 15 years ago
  82. b699866 Eliminate cursor kinds used to express definitions. Instead, provide by Douglas Gregor · 15 years ago
  83. c39b2bd Fix a serious bug: Tmp3 is the wrong destination set. We should create a new by Zhongxing Xu · 15 years ago
  84. c5d1e93 Introduce clang_getCursorReferenced, to get a cursor pointing at the by Douglas Gregor · 15 years ago
  85. a7bde20 Implement clang_getCursorExtent, which provides a source range for the by Douglas Gregor · 15 years ago
  86. ad2b804 Move AccessSpecifier into the new Specifiers.h; fixes the layering violations by John McCall · 15 years ago
  87. 547836f Now that a reasonable deprecation cycle has passed, kill by Douglas Gregor · 15 years ago
  88. 98258af Introduce clang_getCursorLocation(), which supercedes by Douglas Gregor · 15 years ago
  89. 046c227 allow the HandlerComment callback to push tokens into the by Chris Lattner · 15 years ago
  90. 3c7313d Clean up the CIndex API slightly. by Douglas Gregor · 15 years ago
  91. 3530521 Add missing newline. by Daniel Dunbar · 15 years ago
  92. d038f36 float, double, and long double do need extra data in the by Douglas Gregor · 15 years ago
  93. cf84aa4 Replace clang_getDeclUSR() with clang_getCursorUSR(). Also remove printing 'contexts' from c-index-test output; it wasn't helpful and was extremely brittle. by Ted Kremenek · 15 years ago
  94. 42f56b5 Preserve type source information in compound literal expressions. by John McCall · 15 years ago
  95. b7fd588 Silence a control reaches end of function warning. Patch by Enea Zaffanella. by Mike Stump · 15 years ago
  96. ddf889a Improve source-location information for builtin TypeLocs, from Enea by Douglas Gregor · 15 years ago
  97. 80febb9 Fix race condition in creating objdir. by Daniel Dunbar · 15 years ago
  98. ab8bbf4 Encoding calling conventions in the type system, from Charles Davis! by Douglas Gregor · 15 years ago
  99. 3ed04d3 Add support for computing size in elements for symbolic regions obtained from by Zhongxing Xu · 15 years ago
  100. ce757a7 Add PCH support for CXXStaticCastExpr, CXXDynamicCastExpr, CXXReinterpretCastExpr, CXXConstCastExpr and CXXFunctionalCastExpr. by Sam Weinig · 15 years ago