1. 3b85ecf Preserve access for enum constants during template instantiation. by John McCall · 15 years ago
  2. 987dc6a More init work, adding more entity parameters. by Anders Carlsson · 15 years ago
  3. b9ea98e Temporary flip default for -Wunreachable-code so some bots can test it by Mike Stump · 15 years ago
  4. 2bbae5d Use the new init code for member subobjects. by Anders Carlsson · 15 years ago
  5. 784f699 Switch some array initialization over to the new init code. by Anders Carlsson · 15 years ago
  6. 4617191 Insulate these from changes to the default for -Wunreachable-code. by Mike Stump · 15 years ago
  7. 46f4659 Baby steps towards migrating the InitListChecker over to the new initialization code. Pass an InitializedEntity pointer through to most init checker functions. Right now, it's ignored everywhere except when initializing vectors in C++. by Anders Carlsson · 15 years ago
  8. 1f24350 When an InitializedEntity is passed to CheckSingleInitializer, call the new Sema::PerformCopyInitialization overload. by Anders Carlsson · 15 years ago
  9. e6dddfd Add bzero builtin; this should help codegen quality for code using this by Eli Friedman · 15 years ago
  10. c07b8c0 Change CheckSingleInitializer to take/return OwningExprResults instead. No functionality change. by Anders Carlsson · 15 years ago
  11. e876419 Fix typo. by Anders Carlsson · 15 years ago
  12. c96f494 Simplify code with StringRef. by Benjamin Kramer · 15 years ago
  13. 1b627dc No need to terminate this buffer. by Benjamin Kramer · 15 years ago
  14. 23e1ad0 Add doxygen comment to clang_getClangVersion(). by Ted Kremenek · 15 years ago
  15. 56c75a7 Adjust testcase for recent AsmPrinter changes, sigh. by Benjamin Kramer · 15 years ago
  16. f95dd73 Adjust testcase for recent DWARF printer changes. by Benjamin Kramer · 15 years ago
  17. 258b203 Produce a special diagnostic when users call a function with an argument of by John McCall · 15 years ago
  18. 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
  19. 717e891 During overload resolution diagnostics, sort non-viable candidates by the quality of their by John McCall · 15 years ago
  20. d3d824d Separate EK_ArrayOrVectorElement into EK_ArrayElement and EK_VectorElement; arrays and vectors are pretty different beasts in C++. Doug, please review/comment. by Anders Carlsson · 15 years ago
  21. 0d13f6f Created __builtin___NSStringMakeConstantString() builtin, which generates constant Objective-C strings. by David Chisnall · 15 years ago
  22. a18f1b8 Rename getClangFullVendorVersion() to getClangFullVersion(). by Ted Kremenek · 15 years ago
  23. 92f8831 Implement elementary access control. by John McCall · 15 years ago
  24. 336fd81 Teach the cursor visitor to recurse into the type information of by Douglas Gregor · 15 years ago
  25. fee1137 Extern darwin-clang_rt.c test to also test targetting ARM ({armv6, armv7} x by Daniel Dunbar · 15 years ago
  26. 9f16f13 Fix a FIXME, this test folds to a constant now. by Daniel Dunbar · 15 years ago
  27. 4db64a4 Extend clang_createTranslationUnitFromSourceFile() to support creating by Douglas Gregor · 15 years ago
  28. e4fb828 outside a method, 'super' should resolve in a normal name look up by Fariborz Jahanian · 15 years ago
  29. 04bb716 Add 'clang_getClangVersion()' function to CIndex. This exposes the full Clang version string through the CIndex API. by Ted Kremenek · 15 years ago
  30. f9d3e9b Fixup the rest of the testcases to grep the .ll file instead of the .s by Mike Stump · 15 years ago
  31. f57b820 Fixes test. by Fariborz Jahanian · 15 years ago
  32. 3687a5d Move version string generation (e.g., "clang 1.1 ...") to libBasic/Version.cpp, getClangFullVendorVersion(). by Ted Kremenek · 15 years ago
  33. c42fefa Improve content and structure of the Doxygen documentation for the by Douglas Gregor · 15 years ago
  34. f7a96a3 (1) Rename getClangSubversionRevision() to getClangRevision(), and by Ted Kremenek · 15 years ago
  35. e07b6e5 Convert more testcases to checking the .ll file instead of the .s file. by Mike Stump · 15 years ago
  36. b979034 Yet more CIndex API cleanup: by Douglas Gregor · 15 years ago
  37. a8be02b ui64, etc. are valid VS suffixes. Fixes radar 7562363. by Fariborz Jahanian · 15 years ago
  38. 5b4ec63 Rename pch::SVN_BRANCH_REVISION to pch::VERSION_CONTROL_BRANCH_REVISION. by Ted Kremenek · 15 years ago
  39. 517e676 Rename getClangSubversionPath() -> getClangRepositoryPath() and have it return a StringRef. by Ted Kremenek · 15 years ago
  40. 9fb48de Eliminate index-test; all of its tested functionality is now in c-index-test. by Douglas Gregor · 15 years ago
  41. a030b7c Eliminate CIndex's dependency on the Clang Index library, since we by Douglas Gregor · 15 years ago
  42. 6ebee07 Be sure to select primary bases among the nearly empties in preorder, by Mike Stump · 15 years ago
  43. 33e9abd Teach CIndex's cursor visitor to restrict its traversal to a specific by Douglas Gregor · 15 years ago
  44. 372ade2 Finish off fixing up debug information. by Mike Stump · 15 years ago
  45. 588a4ad Patch fixes a lookup bug in c++'s anonymous union member by Fariborz Jahanian · 15 years ago
  46. f2a04bf No need to canonicalize the type and use dyn_cast. Also, correctly diagnose trying to override a function returning an lvalue reference with a function overriding an rvalue reference. by Anders Carlsson · 15 years ago
  47. 568bb2d Eliminate some Clang warnings by Douglas Gregor · 15 years ago
  48. 3cf7c5d Simplify code. by Benjamin Kramer · 15 years ago
  49. ceb7e00 Fix an obvious goof that caused us to only see the top level of return types by Chandler Carruth · 15 years ago
  50. fc9f16c Ensure we output all non-virtual base vtables. Fixes PR5890. by Mike Stump · 15 years ago
  51. b79b117 Process cast according to the cast kind. Prepare for more specific cast by Zhongxing Xu · 15 years ago
  52. eec9910 Driver/Darwin: Update tool chain to use static clang_rt libraries provided by by Daniel Dunbar · 15 years ago
  53. 8917dd4 Driver/Darwin/ld: Fix refacto, -force_cpusubtype_ALL should only be forwarded, by Daniel Dunbar · 15 years ago
  54. d658490 Update debugging code. by Mike Stump · 15 years ago
  55. eeff406 Driver/Darwin/ld: Factor out getDarwinArchName, for getting the "Darwin" arch by Daniel Dunbar · 15 years ago
  56. a6d3849 Driver/Darwin/ld: Eliminate AddDarwinSubArch, our linker invocation is going to by Daniel Dunbar · 15 years ago
  57. 79bba50 Add a Coding Standards section to hacking.html, and point out that cstdio is forbidden. by Daniel Dunbar · 15 years ago
  58. f3f91f3 Use raw_ostream instead of cstdio. by Daniel Dunbar · 15 years ago
  59. f5bab41 Visit if, switch statements properly by Douglas Gregor · 15 years ago
  60. 1ef2fc1 Teach the cursor visitor to walk all of the C and Objective-C by Douglas Gregor · 15 years ago
  61. 7a9813c Create function, block, and template parameters in the context of the by John McCall · 15 years ago
  62. f45b646 revert my patch for rdar://7520940 that warns when a published header by Chris Lattner · 15 years ago
  63. 4a41567 Wire up the new range reporting for unreachable code. by Mike Stump · 15 years ago
  64. a59e390 Teach the cursor visitor to walk statements and expressions, including by Douglas Gregor · 15 years ago
  65. b5c7755 Improve unreachable code warnings with respect to dead member and by Mike Stump · 15 years ago
  66. 0380043 Due to local reversions and re-patching, I accidentally had multiple copies by John McCall · 15 years ago
  67. 2d6ceab Improve unreachable code warnings for with respect to dead functional casts in C++. by Mike Stump · 15 years ago
  68. 2332c11 Teach the cursor visitor to walk into typeof types (both kinds). This by Douglas Gregor · 15 years ago
  69. 4458230 Improve unreachable code warnings for with respect to c-style casts. by Mike Stump · 15 years ago
  70. e5fba70 Improve unreachable code warnings for with respect to ? :. by Mike Stump · 15 years ago
  71. 71842cc Allocate the 'Protocols' array in ObjCInterfaceType and by Ted Kremenek · 15 years ago
  72. 5bb4d98 Revert r94073, it fails in Release-Asserts builds. by Benjamin Kramer · 15 years ago
  73. d8265b8 Fixes a comment. by Fariborz Jahanian · 15 years ago
  74. d050240 Patch to implement rewriting of properties. Fixes radar 7562952. by Fariborz Jahanian · 15 years ago
  75. 45db90d Improve unreachable code warnings for with respect to compound assignments. by Mike Stump · 15 years ago
  76. f20dfbc Teach the cursor visitor to walk into a variety of different TypeLoc by Douglas Gregor · 15 years ago
  77. 55f988e Improve unreachable code warnings with respect to dead binary and by Mike Stump · 15 years ago
  78. 60eea55 Add a test for clang_rt support on Darwin. With appropriate massaging, this by Daniel Dunbar · 15 years ago
  79. c67bb59 Tweak OptionalTests paths. by Daniel Dunbar · 15 years ago
  80. 38474aa Update to use llvm/utils/GetSourceVersion to detect version number, instead of by Daniel Dunbar · 15 years ago
  81. 6d44f6e Add utils/OptionalTests, a dumping ground for additional (lit) tests which for by Daniel Dunbar · 15 years ago
  82. 58b7eee Move the VTT related code into its own file, CGVTT.cpp by Anders Carlsson · 15 years ago
  83. 7d0d40e Introduce type references into the C API, capturing references to by Douglas Gregor · 15 years ago
  84. c026540 Teach code-completion to deal with calls to functions without prototypes. by Douglas Gregor · 15 years ago
  85. 4c45aa1 Speed up compilation by avoiding generating exceptional edges from by Mike Stump · 15 years ago
  86. 21c5791 Match branch labels with the trailing colon so we don't accidentally match something else. by Benjamin Kramer · 15 years ago
  87. f8c4921 Move some recent checking code into SemaChecking instead. by Mike Stump · 15 years ago
  88. d40e94d Avoid instantiating std::sort to save on compiler size. by Mike Stump · 15 years ago
  89. 44fa210 When checking for unreachable code, we can trivially avoid checking by Mike Stump · 15 years ago
  90. 6bde1ae When checking for unreachable blocks, we can trivially avoid extra by Mike Stump · 15 years ago
  91. b978a44 Add infrastructure to add base initializers and member initializers to by Mike Stump · 15 years ago
  92. 4816839 Fixes comments. by Fariborz Jahanian · 15 years ago
  93. f7c43fd Also allow cast of block pointer type to by Fariborz Jahanian · 15 years ago
  94. b2cd487 Stash a CXXUnit pointer into each cursor. This allows us to simplify by Douglas Gregor · 15 years ago
  95. d0f251b A Decl->getName() is not unique. However, the debug info descriptors by Devang Patel · 15 years ago
  96. 5bfb8c1 Eliminate the MakeCXCursor routines that require their callers to know too much about the cursor's storage by Douglas Gregor · 15 years ago
  97. b351a7d In objective-c++ land, a block pointer is another object pointer. by Fariborz Jahanian · 15 years ago
  98. f552544 Yet more Doxygen-comment tweaking in the CIndex library. by Douglas Gregor · 15 years ago
  99. 7f17376 Improve Doxygen documentation for the CIndex library, somewhat. by Douglas Gregor · 15 years ago
  100. 7264fa16 Change LLVM/clang #includes to use quotes, not angle-brackets. Just a think-o by John McCall · 15 years ago