1. 4cd912a When we load an ASTUnit from command-line arguments, hold on to the by Douglas Gregor · 14 years ago
  2. a9f4f62 Eliminate the (de-)serialization of code completion results, now that by Douglas Gregor · 14 years ago
  3. d3ab63e Eliminate -fdiagnostics-binary and all of the infrastructure for by Douglas Gregor · 14 years ago
  4. 32be4a5 Switch c-index-test from clang_codeComplete() over to by Douglas Gregor · 14 years ago
  5. 9d520c5 Declare argv parameters as const char* const* instead of to char** to clarify that they are not modified, and to allow for string literals as arguments. by Axel Naumann · 14 years ago
  6. 7d0c4cc Tighten up constness of argv parameters to allow for string literals as argumants and to reflect actual (non-modifying) use. by Axel Naumann · 14 years ago
  7. 32df002 lib/Frontend/InitHeaderSearch.cpp: Fix compatibility to Cygming. by NAKAMURA Takumi · 14 years ago
  8. 642bfaa Improve XML output for class/struct/union declarations, from Martin Vejnar! by Douglas Gregor · 14 years ago
  9. aa3e6ba Fix three related, wily issues with the recompilation of precompiled preambles: by Douglas Gregor · 14 years ago
  10. 9a2b9d7 Implement -fshort-enums (rdar://8490496). by Argyrios Kyrtzidis · 14 years ago
  11. 3552f66 Don't force spell checking when code-completing. Let the client decide by Douglas Gregor · 14 years ago
  12. 37cf663 Fix a double-free error that can occur in rare cases where loading by Douglas Gregor · 14 years ago
  13. 1d9f1fe Give every file that ASTReader loads a type: module, PCH, precompiled preamble or main file. Base Decls' PCHLevel on this to make it more sane. by Sebastian Redl · 14 years ago
  14. 85e5191 Enable chained precompiled headers for use with precompiled preambles by Douglas Gregor · 14 years ago
  15. c69e1cf Introduce -flimit-debug-info. by Devang Patel · 14 years ago
  16. 9121ba2 Added two new command line arguments: by Marcin Swiderski · 14 years ago
  17. 54d56a5 Frontend/XML: Add support for printing nested structures, patch by Martin Vejnár! by Daniel Dunbar · 14 years ago
  18. 06e5044 Remove libclang logging code by Douglas Gregor · 14 years ago
  19. 76dc889 When setting the globally-visible declarations for a particular by Douglas Gregor · 14 years ago
  20. 8c8d541 Teach libclang to enable multithreading in LLVM, since libclang clients are likely to be multithreaded. Also move the printing of timers to somewhere better for multithreaded libclang clients by Douglas Gregor · 14 years ago
  21. 52779fb Synchronize globally-cached code completion results with the results by Douglas Gregor · 14 years ago
  22. b05496d Tweak priorities for some types and macros: by Douglas Gregor · 14 years ago
  23. 7f18e67 Add a -ftrapv-handler= option which allows a handler to invoke instead of simply aborting when a signed operation overflows. This mirrors the (GCC-incompatible) behaviour from clang 1.0 and 1.1 when -ftrapv was specified, but allows the handler to be defined for each compilation unit. by David Chisnall · 14 years ago
  24. dc24572 Use a temporary file for output which gets renamed after all the writing is finished. by Argyrios Kyrtzidis · 14 years ago
  25. 2346513 Handle '#line' in '-E' that has an empty file name. Fixes <rdar://problem/8439412>. by Ted Kremenek · 14 years ago
  26. 0268810 Introduce a new code-completion context for a parenthesized by Douglas Gregor · 14 years ago
  27. 560a921 Revert "CMake: Update to use standard CMake dependency tracking facilities instead" by Michael J. Spencer · 14 years ago
  28. 424668c The two libclang crash-recovery tests that involve precompiled by Douglas Gregor · 14 years ago
  29. 2cd4fd4 If we fail to create a temporary file for the precompiled preamble, by Douglas Gregor · 14 years ago
  30. 0d155a5 add latest gentoo gcc path by Nuno Lopes · 14 years ago
  31. c6cb2b0 Tweak GetPreamblePCHPath() to more closely match the behavior of the by Douglas Gregor · 14 years ago
  32. fe6834a Make sure we're producing a newline in the preprocessed output before by Douglas Gregor · 14 years ago
  33. 5a7f349 CMake: Update to use standard CMake dependency tracking facilities instead by Michael J. Spencer · 14 years ago
  34. 52d861c Added AnalyzerStatsChecker, a path sensitive check that reports visitation statistics about analysis. Running clang with the -analyzer-stats flag will emit warnings containing the information. We can then run a postanalysis script to take this data and give useful information about how much the analyzer missed in a project. by Tom Care · 14 years ago
  35. 80c60f7 When we parse a pragma, keep track of how that pragma was originally by Douglas Gregor · 14 years ago
  36. 80c26f4 Frontend: Add -cxx-system-include option which can be used to specify an by Daniel Dunbar · 14 years ago
  37. d11ee7f Fix indentation. by Daniel Dunbar · 14 years ago
  38. ec9bf47 Clean up CMake dependencies by Douglas Gregor · 14 years ago
  39. 5a97847 Add another missing CMake dependency. by Daniel Dunbar · 14 years ago
  40. bfae8bd Clean up some of the CMake dependencies by Douglas Gregor · 14 years ago
  41. 4566d1a Frontend/-H: Add comment on why I used a temporary string here. by Daniel Dunbar · 14 years ago
  42. 343d65c Tell the VS headers that char16_t and char32_t are keywords, so yvals.h doesn't try to define them as typedefs. by Steven Watanabe · 14 years ago
  43. 66392d4 zap dead code. by Chris Lattner · 14 years ago
  44. 8e9006b fix lookup of bits/c++config.h on mingw, patch by Ismail Donmez! by Chris Lattner · 14 years ago
  45. c5138b2 First test commit by Francois Pichet. _CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES is not a predefined macro, remove it. by Francois Pichet · 14 years ago
  46. 400b607 Add support for Borland extensions via option -fborland-extensions by Dawn Perchik · 14 years ago
  47. d0b4e7c Reverting rev 112791 - apparently -fborland-extensions is on all the time?! by Dawn Perchik · 14 years ago
  48. 621a2f3 Add support for Borland extensions via option -fborland-extensions by Dawn Perchik · 14 years ago
  49. 0080f0c StringRefize. by Benjamin Kramer · 14 years ago
  50. 6a08140 add a new version of mingw, patch by İsmail "cartman" Dönmez in PR8049 by Chris Lattner · 14 years ago
  51. ab07941 Add NetBSD include search path by Anton Korobeynikov · 14 years ago
  52. 5c0ca52 Predeclare class type_info in Microsoft mode, from Francois Pichet! by Douglas Gregor · 14 years ago
  53. 2dc1453 Straighten out target triples provided on the command line before using them. by Duncan Sands · 14 years ago
  54. 1a480c4 Suggest "const" and "volatile" code completions after a function by Douglas Gregor · 14 years ago
  55. f155dfa createMainFileID doesn't need its IncludePos argument, since by Dan Gohman · 14 years ago
  56. 458433d Implement code completion for @selector expressions by Douglas Gregor · 14 years ago
  57. 1e5e668 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  58. 1cb237f Revert r112149, "Move the sorting of code-completion results out of the main by Daniel Dunbar · 14 years ago
  59. be13afe Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  60. 9214819 Revert "Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  61. c7ed372 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  62. 721f359 When combining the code-completion results from Sema long with the by Douglas Gregor · 14 years ago
  63. 59a6694 Add a missing case by Douglas Gregor · 14 years ago
  64. c9c29a8 Fix an off-by-one error when computing the precompiled preamble for by Douglas Gregor · 14 years ago
  65. 4125c37 Make the cursor kind of macro-name-only completions produced by by Douglas Gregor · 14 years ago
  66. 0a2c5e2 Teach Sema to live without CodeCompleteConsumer.h. by John McCall · 14 years ago
  67. f7c16d9 Frontend: Add basic -H support. by Daniel Dunbar · 14 years ago
  68. 23637be correct the -isystem option to not add the -isysroot path. Only the weird by Chris Lattner · 14 years ago
  69. f29c523 Implement code completion for preprocessor expressions and in macro arguments. by Douglas Gregor · 14 years ago
  70. 9db9ad3 Implement -iwithsysroot, an apple extension which is a close cousin of -isystem. by Chris Lattner · 14 years ago
  71. 1fbb447 Implement preprocessor code completion where a macro name is expected, by Douglas Gregor · 14 years ago
  72. 1b7255d Move ExecuteCompilerInvocation to a new library FrontendTool by Peter Collingbourne · 14 years ago
  73. 58ddb60 Introduce new libclang API functions that determine the availability by Douglas Gregor · 14 years ago
  74. 6d72cbe Don't include macro results when we're completing a declarator. by Douglas Gregor · 14 years ago
  75. 2ccccb3 Introduce a new code-completion point when we're parsing a by Douglas Gregor · 14 years ago
  76. 875ab10 Abstract out member-pointer creation. I'm really unhappy about the current by John McCall · 14 years ago
  77. a7e6845 Detabify. by Eli Friedman · 14 years ago
  78. ff58e36 Visual Studio tools used on win32 hosts when targeting win32. by Michael J. Spencer · 14 years ago
  79. 13cfedb Fix typo in comment. by Michael J. Spencer · 14 years ago
  80. 1951085 Another step in the process of making the parser depend on Sema: by John McCall · 14 years ago
  81. bf5e09d Eliminate some extraneous whitespace in the machine-parseable Fix-It output. by Douglas Gregor · 14 years ago
  82. 2283d79 When performing code-completion in the presence of a preamble, make by Douglas Gregor · 14 years ago
  83. f128fed When we decide not to reuse a precompiled preamble, clear out the by Douglas Gregor · 14 years ago
  84. 4786c15 Add machine-parseable Fix-It output as part of diagnostics, under the by Douglas Gregor · 14 years ago
  85. c1cf158 Fix a loop overrun in ComputePreamble when the last remapped file was erased, by Daniel Dunbar · 14 years ago
  86. 671947b Plug a leak when precompiling the preamble in ASTUnit. by Douglas Gregor · 14 years ago
  87. 8b1540c Make sure to initialize ASTUnit::UnsafeToFree by Douglas Gregor · 14 years ago
  88. 6ab7cd8 Rename the ASTReader header files. by Sebastian Redl · 14 years ago
  89. 3c7f413 More PCH -> AST renaming. by Sebastian Redl · 14 years ago
  90. 571db7f Rename various classes from PCH to AST. by Sebastian Redl · 14 years ago
  91. c43b54c Rename PCHReader to ASTReader. by Sebastian Redl · 14 years ago
  92. 7faa2ec Rename PCHWriter.h to ASTWriter.h by Sebastian Redl · 14 years ago
  93. a4232eb Rename PCHWriter to ASTWriter by Sebastian Redl · 14 years ago
  94. f421089 When creating an ASTUnit by parsing source code, set DisableFree to by Douglas Gregor · 14 years ago
  95. bdbb004 Simplify the ownership model for DiagnosticClients, which was really by Douglas Gregor · 14 years ago
  96. 783c56f Simplify FixItHint by eliminated the unnecessary InsertionLoc by Douglas Gregor · 14 years ago
  97. 11e6f61 Fix CMake build by Sebastian Redl · 14 years ago
  98. 8572813 Reintroduce the serialization library, with fixed dependencies. by Sebastian Redl · 14 years ago
  99. a8fb24f Patch to add type parameter support for attribute iboutletcollection. by Fariborz Jahanian · 14 years ago
  100. 4557e47 Revert Sebastian's build-breaking patch. by Douglas Gregor · 14 years ago