1. b227323 Fix type mismatch in initialization (caught by -Wliteral-conversion) by Matt Beaumont-Gay · 13 years ago
  2. e2c8663 [analyzer] update bug report url by Nico Weber · 13 years ago
  3. 95ed778 objective-c: Treat top-level objective-c declarations by Fariborz Jahanian · 13 years ago
  4. b5af843 Eliminate the -chained-pch flag and all of the frontend and libclang options associated with it. Chained PCH is the only way to build a PCH file that includes another PCH file by Douglas Gregor · 13 years ago
  5. 467dc88 Introduce a -cc1 option "-emit-module", that creates a binary module by Douglas Gregor · 13 years ago
  6. 6f155de [libclang] Fix getting a cursor that points inside tag definition that is part by Argyrios Kyrtzidis · 13 years ago
  7. a6b4045 Match LLVM change: TargetRegistry and TargetSelect have been moved to Support. by Evan Cheng · 13 years ago
  8. 47695c8 [libclang] Remove NestedNameSpecifierVisit, as Clang says that this code is dead. by Ted Kremenek · 13 years ago
  9. a676379 [libclang] Annotate correctly macro argument tokens. by Argyrios Kyrtzidis · 13 years ago
  10. baf82b0 [libclang] Workaround potential race condition with code completion AllocatedResults being freed after a CXTranslationUnit. by Ted Kremenek · 13 years ago
  11. 94fe9ee [libclang] Implicit objc methods are skipped, no need to check isSynthesized. by Argyrios Kyrtzidis · 13 years ago
  12. 75cf3e8 Mark objc methods that are implicitly declared for properties (not user-declared) as implicit. by Argyrios Kyrtzidis · 13 years ago
  13. 4b43b30 [libclang] Make clang_getCursor able to handle locations that point inside macro arguments. by Argyrios Kyrtzidis · 13 years ago
  14. 09190be Update createMCAsmParser() to match r137735. by Jim Grosbach · 13 years ago
  15. 427964e [libclang] Require explicit cursor visitation for all TypeLocs (compilation will by Argyrios Kyrtzidis · 13 years ago
  16. 3422fbc [libclang] Handle AttributedTypeLoc for cursor visitation. Fixes rdar://9535717. by Argyrios Kyrtzidis · 13 years ago
  17. af0f4d0 Implement function template specialization at class scope extension in Microsoft mode. A new AST node is introduced: ClassScopeFunctionSpecialization. This node holds a FunctionDecl that is not yet specialized; then during the class template instantiation the ClassScopeFunctionSpecialization will spawn the actual function specialization. by Francois Pichet · 13 years ago
  18. 83f06e8 The diagtool registration system tries to use a global variable from a method by Nick Lewycky · 13 years ago
  19. 6bf2b9f In the serialized AST format, make the translation unit a "predefined" by Douglas Gregor · 13 years ago
  20. 0a20818 scan-build: enable C++ support by default. by Ted Kremenek · 13 years ago
  21. 8a4bfaa [libclang] When pointing at an objc property don't return a cursor that points at the by Argyrios Kyrtzidis · 13 years ago
  22. eaf4fba Switch a C-style cast over to a const_cast. No functionality change by Douglas Gregor · 13 years ago
  23. e802c61 Place back previous order of add_subdirectory()'s to reflect build depedencies. by Ted Kremenek · 13 years ago
  24. 7eab9d3 Add libsupport to list of libraries to link into diagtool by Ted Kremenek · 13 years ago
  25. 2dc651d Add 'diagtool' to the 'tools/' directory. diagtool is a new tool (WIP) for analyzing and working with clang diagnostics. by Ted Kremenek · 13 years ago
  26. 38559ec Sort CMakeLists.txt. by Ted Kremenek · 13 years ago
  27. 8fa0a80 Add a new libclang API to return a CXCompletionString for an arbitrary by Douglas Gregor · 13 years ago
  28. 2b81910 When the compiler crashes, the compiler driver now produces diagnostic by Chad Rosier · 13 years ago
  29. 0f91c8c When performing code completion after at @interface, allow both by Douglas Gregor · 13 years ago
  30. d1194fb clang_getCXTUResourceUsage: report memory used by HeaderSearch. by Ted Kremenek · 13 years ago
  31. ca7dc2b clang_getCXTUResourceUsage: Report memory used by data structures in SourceManager. by Ted Kremenek · 13 years ago
  32. a0651c5 Eliminate a bunch of temporary strings. by Benjamin Kramer · 13 years ago
  33. 0a47d69 Add new libclang API, clang_codeCompleteGetObjCSelector(), which by Douglas Gregor · 13 years ago
  34. ccb21e4 Assembler really doesn't need to create TargetMachine anymore. by Evan Cheng · 13 years ago
  35. 7b6def7 Rename createCodeEmitter to createMCCodeEmitter; createObjectStreamer to createMCObjectStreamer. by Evan Cheng · 13 years ago
  36. 3771235 Rename createAsmParser to createMCAsmParser. by Evan Cheng · 13 years ago
  37. 21118dc Rename TargetAsmBackend to MCAsmBackend; rename createAsmBackend to createMCAsmBackend. by Evan Cheng · 13 years ago
  38. 48a8d14 Fix the MSVC build. 2 problems: by Francois Pichet · 13 years ago
  39. 6421162 Rename getInstantiationLineNumber to getExpansionLineNumber in both by Chandler Carruth · 13 years ago
  40. a77c031 Rename getInstantiationColumnNumber to getExpansionColumnNumber in both by Chandler Carruth · 13 years ago
  41. 75d8c91 Assembler doesn't need to initialize TargetMachine's anymore. by Evan Cheng · 13 years ago
  42. e7b2b6e Rename getDecomposedInstantiationLoc to getDecomposedExpansionLoc. by Chandler Carruth · 13 years ago
  43. 430d7a1 Added clang_getCursorReferenceNameRange to libclang to to retrieve parts of by Douglas Gregor · 13 years ago
  44. edc3dcc Rename SourceManager::getInstantiationRange to getExpansionRange. by Chandler Carruth · 13 years ago
  45. 4027853 Mechanically rename SourceManager::getInstantiationLoc and by Chandler Carruth · 13 years ago
  46. ab4e83b Extend libclang with clang_equalRanges, from Erik Verbruggen! by Douglas Gregor · 13 years ago
  47. 2d3ba4f Move ArrayRef to LLVM.h and eliminate now-redundant qualifiers, patch by Jon Mulder! by Chris Lattner · 13 years ago
  48. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  49. 3db87b8 Move TargetAsmParser.h TargetAsmBackend.h and TargetAsmLexer.h to MC where they belong. by Evan Cheng · 13 years ago
  50. d99d3e1 Match LLVM API change. by Evan Cheng · 13 years ago
  51. e081a61 New libclang API to expose container type for code completion, from by Douglas Gregor · 13 years ago
  52. 4c30bb1 Rework the detailed preprocessing record to separate preprocessing by Douglas Gregor · 13 years ago
  53. d7a3ba0 Temporarily revert r135614 while I fix the cmake build. by Chad Rosier · 13 years ago
  54. 2da13b1 When the compiler crashes, the compiler driver now produces diagnostic information by Chad Rosier · 13 years ago
  55. 66488ed Match MCContext change. by Evan Cheng · 13 years ago
  56. 686775d now that we have a centralized place to do so, add some using declarations for by Chris Lattner · 13 years ago
  57. 36fc3aa Match LLVM API change. by Evan Cheng · 13 years ago
  58. f62d43d Revamp the SourceManager to separate the representation of parsed by Douglas Gregor · 13 years ago
  59. 2860e30 Match createTargetMachine API change. by Evan Cheng · 13 years ago
  60. 884744b MCContext now takes MCRegisterInfo. by Evan Cheng · 13 years ago
  61. debb00f [libclang] Map canonical decl of a category implementation to the category decl. by Argyrios Kyrtzidis · 13 years ago
  62. e2f854d Revert r135304 and apply fix in clang_getCanonicalCursor per Doug's, Fariborz's comments. by Argyrios Kyrtzidis · 13 years ago
  63. 91a5755 Create a new expression node, SubstNonTypeTemplateParmExpr, by John McCall · 13 years ago
  64. e27eb59 Match llvm API change. by Evan Cheng · 13 years ago
  65. cea731a Clean up two lingering comments that mention 'instantiation' w.r.t. by Chandler Carruth · 13 years ago
  66. ba7537f NestedMacroInstantiations -> NestedMacroExpansions by Chandler Carruth · 13 years ago
  67. 9b2a0ac Update all of the libclang code corresponding to the preprocessor by Chandler Carruth · 13 years ago
  68. 9e5bb85 Move the rest of the preprocessor terminology from 'instantiate' and by Chandler Carruth · 13 years ago
  69. 6e80903 Fix CMake. by Argyrios Kyrtzidis · 13 years ago
  70. 97c337c [arcmt] Move the remapping functions to clang-c/Index.h and change 'arcmt_' prefix to 'clang_'. by Argyrios Kyrtzidis · 13 years ago
  71. 74e1332 Match createCodeEmitter change. by Evan Cheng · 13 years ago
  72. 9de09d4 Fix ARCMT/migrate.m on MSVC. by Francois Pichet · 13 years ago
  73. 8db0990 Unbreak -cc1as mode after MC subtarget changes by Joerg Sonnenberger · 13 years ago
  74. 23319f3 tools/c-arcmt-test/Makefile: Add clangARCMigrate.a clangRewrite.a to USEDLIBS to satisfy linking on cygming. by NAKAMURA Takumi · 13 years ago
  75. 0989bf7 c-arcmt-test.c: MSVCRT does not have setenv. Use putenv instead. by NAKAMURA Takumi · 13 years ago
  76. bb54093 Fix linker problem in buildbot. by Argyrios Kyrtzidis · 13 years ago
  77. 4fc446f Ugh, fix CMake. by Argyrios Kyrtzidis · 13 years ago
  78. 9621019 [libclang] Fix linker error in buildbots. by Argyrios Kyrtzidis · 13 years ago
  79. 69325d5 [arcmt] Introduce new '-ccc-arcmt-migrate <path>' ARC migration driver option. by Argyrios Kyrtzidis · 13 years ago
  80. f073324 cc1 must initialize MC subtarget infos for inline asm parsing. Re-enable asm-errors.c by Evan Cheng · 13 years ago
  81. bb36ed9 createAsmParser API change. by Evan Cheng · 13 years ago
  82. 4d6980b Update the creation of the TargetAsmParser based on API change in r134678. by Chandler Carruth · 13 years ago
  83. ca02643 Slightly improve the code to derive target from program name to not by Joerg Sonnenberger · 13 years ago
  84. 3da626b Introduce a new libclang aPI function, by Douglas Gregor · 13 years ago
  85. 08aa622 MSVC doesn't like mixing declarations and statements in a C file. by Francois Pichet · 13 years ago
  86. 24c9db6 createMCInstPrinter doesn't need TargetMachine anymore. by Evan Cheng · 13 years ago
  87. 39c411f libclang: Allow callers of clang_saveTranslationUnit() to distinguish by Douglas Gregor · 13 years ago
  88. 8be80e1 Improve the Python bindings for libclang in a few ways, from Eli by Douglas Gregor · 13 years ago
  89. 1460604 Preserve that a TemplateName was arrived at by substituting by John McCall · 13 years ago
  90. 368691e createTargetMachine now takes a CPU string. by Evan Cheng · 13 years ago
  91. 8ccac3d [libclang] Introduce cxcursor::getCursorParentDecl(CXCursor Cursor) and use it at the appropriate place in CIndex.cpp by Argyrios Kyrtzidis · 13 years ago
  92. c5c5e92 Introduce Preprocessor::getTotalMemory() and use it in CIndex.cpp, no functionality change. by Argyrios Kyrtzidis · 13 years ago
  93. 3963cef Revert unintentional commit. by Eli Friedman · 13 years ago
  94. 0c05122 Merge some calls to FoldingSetNodeID::AddInteger; assuming my measurements aren't completely off, roughly a 1% speedup on SingleSource/UnitTests/ObjC/trivial-interface.m . by Eli Friedman · 13 years ago
  95. 064c44b [libclang] Avoid having the cursor of an expression replace the declaration cursor by Argyrios Kyrtzidis · 13 years ago
  96. 5517b89 [libclang] Avoid having the cursor of an expression "overwrite" the annotation of the by Argyrios Kyrtzidis · 13 years ago
  97. 03e8003 Introduce a new AST node describing reference binding to temporaries. by Douglas Gregor · 13 years ago
  98. 944eadb Remove more unnecessary dependencies now that the Frontend -> ARCMigrate by Chandler Carruth · 13 years ago
  99. 25a2ef3 tools/arcmt-test: Don't attempt to link redundant libclang (clang-c). by NAKAMURA Takumi · 13 years ago
  100. e665d69 [arcmt] Fix the ARC migrator. -arcmt-modify requires running before the initialization of SourceManager by Argyrios Kyrtzidis · 13 years ago