1. 28c82ee Another fix for the configure build: correct order of dependencies. by Manuel Klimek · 12 years ago
  2. c76dfb4 Build-fix: Remove non-existent directories from Makefiles. by Manuel Klimek · 12 years ago
  3. 4da2166 Adds the AST Matcher library, which provides a in-C++ DSL to express by Manuel Klimek · 12 years ago
  4. 8d3ba23 Implement AST classes for comments, a real parser for Doxygen comments and a by Dmitri Gribenko · 12 years ago
  5. e6df0ce Adapts the FrontendAction convenience functions so that it can be by Manuel Klimek · 12 years ago
  6. a13d2bc Update unittests for include change. by Benjamin Kramer · 12 years ago
  7. 5676d32 Fix an infinite loop in comment lexer: we were not advancing in the input character stream when we saw a '<' that is not a start of an HTML tag. by Dmitri Gribenko · 12 years ago
  8. 962668d Remove unsigned and a pointer from a comment token (so that each token can have only one semantic string value attached to it), at a cost of adding an additional token. by Dmitri Gribenko · 12 years ago
  9. 2d44d77 Implement a lexer for structured comments. by Dmitri Gribenko · 12 years ago
  10. 8f35d23 Appease -Wnon-virtual-dtor and fix a typo in a comment by Matt Beaumont-Gay · 12 years ago
  11. bc9e558 Add testing for CommentHandler, and fix a bug where trailing comments in #else by Richard Smith · 12 years ago
  12. 0c750ec Clang side of a refactoring of the CMake unit test build strategy. by Chandler Carruth · 12 years ago
  13. 1071ba9 Make the RecursiveASTVisitor visit the body of a range-based for loop by Daniel Jasper · 12 years ago
  14. 20e4129 Switch Clang to re-use the the newly factored common LLVM by Chandler Carruth · 12 years ago
  15. f96b9ce Simplify the Clang unittest function in the CMake build, and make it by Chandler Carruth · 12 years ago
  16. b0d8671 Remove a goofy CMake hack and use the standard CMake facilities to by Chandler Carruth · 12 years ago
  17. caba856 Remove an unused feature of the clang unittest macro. by Chandler Carruth · 12 years ago
  18. f95d412 Fix a big layering violation introduced by r158771. by Chandler Carruth · 12 years ago
  19. aa0cd85 Structured comment parsing, first step. by Dmitri Gribenko · 12 years ago
  20. 2e413f9 Fix the location of the fixit for -Wnewline-eof. by Jordan Rose · 12 years ago
  21. 8f19037 ToolingTest.cpp: Fix r158592, runToolOnCode.FindsNoTopLevelDeclOnEmptyCode on msvc. LangOpts.MicrosoftExt still appends "class type_info;". by NAKAMURA Takumi · 12 years ago
  22. c5613b2 Explicitly build __builtin_va_list. by Meador Inge · 12 years ago
  23. 52ec0c0 Rename shouldVisitImplicitDeclarations to shouldVisitImplicitCode. by Daniel Jasper · 12 years ago
  24. c2a50d4 Move sideeffecting call out of assert(). by Benjamin Kramer · 12 years ago
  25. 7b699ac Switches the RewriterTestContext away from PathV1. by Manuel Klimek · 12 years ago
  26. d6f6569 Fixes the refactoring library test in VS2010. by Manuel Klimek · 12 years ago
  27. c28a335 RecursiveASTVisitor: add ability to visit implicit declarations. Patch by by Richard Smith · 12 years ago
  28. 8f4c4ca Revert r157819, "#ifdef out a broken test on win32" by NAKAMURA Takumi · 12 years ago
  29. 29fbfc2 #ifdef out a broken test on win32 by Alexander Kornienko · 12 years ago
  30. 5f60f60 Added a test for ToolInvocation::mapVirtualFile method. by Alexander Kornienko · 12 years ago
  31. 6fada8e Only visit default arguments for template declarations when visiting the template declaration which introduced them. Patch by Yang Chen! by Richard Smith · 12 years ago
  32. e966bea Test commit - Fix typo in comment. by Daniel Jasper · 12 years ago
  33. 4f85274 clang/unittests/Tooling/RewriterTestContext.h: Don't try to remove TemporaryDirectory. by NAKAMURA Takumi · 12 years ago
  34. f9d4cbd Adds the Refactoring library, which is a layer on top of the Tooling library by Manuel Klimek · 12 years ago
  35. bf78267 Fixes the autoconf build. by Manuel Klimek · 12 years ago
  36. bfbfee5 Adds a method overwriteChangedFiles to the Rewriter. This is implemented by by Manuel Klimek · 12 years ago
  37. 1a8d686 Fixes crasher bug in JSONCompilationDatabase for invalid input. by Manuel Klimek · 12 years ago
  38. 06cd51a RecursiveASTVisitor: by Richard Smith · 12 years ago
  39. c8c2228 Unrevert r155951, reverted in r155962, with two changes: by Richard Smith · 12 years ago
  40. b51c7f3 Revert "Fix RecursiveASTVisitor's data recursion to call the Traverse* functions if they" by Andrew Trick · 12 years ago
  41. e3ba298 Fix RecursiveASTVisitor's data recursion to call the Traverse* functions if they by Richard Smith · 12 years ago
  42. e002631 Fix file name in comment. by David Blaikie · 12 years ago
  43. a313b2f RecursiveASTVisitor: When in 'shouldVisitTemplateInstantiations' mode, visit by Richard Smith · 12 years ago
  44. 5482dc3 RecursiveASTVisitor: Visit instantiations of member templates of class by Richard Smith · 12 years ago
  45. 9f99d06 Fix PR12608. Patch contributed by Yang Chen. by Manuel Klimek · 12 years ago
  46. dab2894 No need to put the SourceManager in with the ASTContext, as the ASTContext by Manuel Klimek · 12 years ago
  47. fad7f85 Adds a unit test for the RecursiveASTVisitor. by Manuel Klimek · 12 years ago
  48. 30318e6 Adds a FixedCompilationDatabase to be able to specify tool parameters by Manuel Klimek · 12 years ago
  49. ba8be8c Kill the last vestiges of clangIndex by Douglas Gregor · 12 years ago
  50. 29b815c clangFrontend depends on clangEdit. by Benjamin Kramer · 13 years ago
  51. cb971c6 Adds a tooling library. by Manuel Klimek · 13 years ago
  52. db81d38 [preprocessor] Handle correctly inclusion directives that have macro expansions, e.g by Argyrios Kyrtzidis · 13 years ago
  53. 1c31ee8 get rid of an unsued variable warning. by Fariborz Jahanian · 13 years ago
  54. 30660a8 Add new code migrator support for migrating existing Objective-C code to use by Ted Kremenek · 13 years ago
  55. c6c5452 [preprocessor] Enhance PreprocessingRecord to keep track of locations of conditional directives. by Argyrios Kyrtzidis · 13 years ago
  56. c93dc78 Basic: import IntrusiveRefCntPtr<> into clang namespace by Dylan Noblesmith · 13 years ago
  57. 36d5927 drop more llvm:: prefixes on SmallString<> by Dylan Noblesmith · 13 years ago
  58. 8fe83e1 Move a method from IdentifierTable.h out of line and remove the SmallString include. by Benjamin Kramer · 13 years ago
  59. a83f4d2 Change Lexer::makeFileCharRange() to have it accept a CharSourceRange by Argyrios Kyrtzidis · 13 years ago
  60. dc58aa7 Thread a TargetInfo through to the module map; we'll need it for by Douglas Gregor · 13 years ago
  61. 7f6cf97 Improve Lexer::getImmediateMacroName to take into account inner macros by Argyrios Kyrtzidis · 13 years ago
  62. d9806c9 Enhance Lexer::makeFileCharRange to check for ranges inside a macro argument by Argyrios Kyrtzidis · 13 years ago
  63. eabcf7e Fix broken unit test by Douglas Gregor · 13 years ago
  64. 65eccf0 Silence set-but-unused warning. by Benjamin Kramer · 13 years ago
  65. e64d903 Introduce Lexer::getSourceText() that returns a string for the source by Argyrios Kyrtzidis · 13 years ago
  66. 11b652d Introduce Lexer::makeFileCharRange() that accepts a token source range by Argyrios Kyrtzidis · 13 years ago
  67. 69bda4c For Lexer's isAt[Start/End]OfMacroExpansion add an out parameter for the macro by Argyrios Kyrtzidis · 13 years ago
  68. 19d5aea Add unit testing for Lexer. by Argyrios Kyrtzidis · 13 years ago
  69. 18383f0 clang/unittests/Basic/SourceManagerTest.cpp: Fixup corresponding to r147387. by NAKAMURA Takumi · 13 years ago
  70. cee5ec9 Fix bugs in SourceManager::computeMacroArgsCache() and add a unit test for it. by Argyrios Kyrtzidis · 13 years ago
  71. d7711ec For SourceManager::isBeforeInTranslationUnit(), have it consider macro arg expanded by Argyrios Kyrtzidis · 13 years ago
  72. 08d6e03 C++11 constexpr: Add note stacks containing backtraces if constant evaluation by Richard Smith · 13 years ago
  73. 2587ede Attempt to fix unit tests by Douglas Gregor · 13 years ago
  74. 40847cf Rename DiagnosticInfo to Diagnostic as per issue 5397 by David Blaikie · 13 years ago
  75. 78ad0b9 Rename DiagnosticClient to DiagnosticConsumer as per issue 5397 by David Blaikie · 13 years ago
  76. d6471f7 Rename Diagnostic to DiagnosticsEngine as per issue 5397 by David Blaikie · 13 years ago
  77. d01fb36 unittests/Basic/FileManagerTest.cpp: Suppress warnings on gcc. by NAKAMURA Takumi · 13 years ago
  78. 5b106a8 Define DiagnosticBuilder<<APValue so it's easy to include APValues in by Jeffrey Yasskin · 13 years ago
  79. 8e27eb7 unittests/Basic/FileManagerTest.cpp: Unbreak Win32, mingw and msvc. by NAKAMURA Takumi · 13 years ago
  80. 72069b2 This random unit test also depends on ARCMigrate. by John McCall · 13 years ago
  81. 8f0e8d2 The ARC Migration Tool. All the credit goes to Argyrios and Fariborz for this. by John McCall · 13 years ago
  82. 16f2131 Reverts the Tooling changes as requested by Chris. by Manuel Klimek · 13 years ago
  83. 7264ab7 Fix broken test on windows. To get operator new working, we need size_t, for which we need to figure out a way to resolve standard include paths in the test. by Manuel Klimek · 13 years ago
  84. 64cbdf3 This patch implements an AST matching framework that allows to write by Manuel Klimek · 13 years ago
  85. c5cd252 Handle gcc-compatible compilers (such as clang) the same way we handle gcc. by Oscar Fuentes · 13 years ago
  86. 850dd80 Adds a test for the command line parser when a quoted string is not closed by a quote. by Manuel Klimek · 13 years ago
  87. 9a05fa9 This is the next step in building the standalone tools infrastructure: by Manuel Klimek · 13 years ago
  88. cf3ce5d Adds a function to run FrontendActions over in-memory code. This is by Manuel Klimek · 13 years ago
  89. a3f787c Put targets on folders, if the IDE supports the feature. by Oscar Fuentes · 14 years ago
  90. 4b93d66 Re-instate r125819 and r125820 with no functionality change by Peter Collingbourne · 14 years ago
  91. 96b1d4b Revert 125820 and 125819 to fix PR9266. by Rafael Espindola · 14 years ago
  92. f91ae52 Use PARSE_ARGUMENTS to clean up add_clang_unittest's calling convention. by Jeffrey Yasskin · 14 years ago
  93. effc48d Remove support and mc from the clang unittests' dependencies because they're not by Jeffrey Yasskin · 14 years ago
  94. 906c73f Move CompilerInstance::LLVMContext and LLVMContext ownership to CodeGenAction by Peter Collingbourne · 14 years ago
  95. c515d18 Adds a CMake target for the Basic lib's unit tests. Reviewed by by Zhanyong Wan · 14 years ago
  96. 05cb9f2 Improves CMakeLists.txt for Clang's unit tests: make "linked by Zhanyong Wan · 14 years ago
  97. 483651c Moves FileManagerTest.cpp to unittests/Basic such that the unit test by Zhanyong Wan · 14 years ago
  98. 718b01d Add CMake support to the clang unittests. by Jeffrey Yasskin · 14 years ago
  99. 9b555ea Improves Clang's virtual file handling. by Zhanyong Wan · 14 years ago
  100. f0ed580 Fix a typo in a comment in tools/clang/unittests/Frontend/Makefile. by Zhanyong Wan · 14 years ago