1. 2946cd7 Update the file headers across all of the LLVM projects in the monorepo by Chandler Carruth · 7 years ago
  2. f78650a Remove trailing space by Fangrui Song · 7 years ago
  3. 4dfcc4a Remove @brief commands from doxygen comments, too. by Adrian Prantl · 8 years ago
  4. 926cd9b [YAML] Escape non-printable multibyte UTF8 in Output::scalarString. by Graydon Hoare · 8 years ago
  5. 72208a8 [ProfileData, Support] Fix some Clang-tidy modernize-use-using and Include What You Use warnings; other minor fixes (NFC). by Eugene Zelenko · 8 years ago
  6. 6bda14b Sort the remaining #include lines in include/... and lib/.... by Chandler Carruth · 8 years ago
  7. 5e6c542 Added LLVM_FALLTHROUGH to address gcc warning: this statement may fall through. by Galina Kistanova · 8 years ago
  8. 3ab3fef Improve error handling in YAML parsing by Mehdi Amini · 9 years ago
  9. 1674261 Support: Return void from Scanner::scan_ns_uri_char, no one uses the result by Justin Bogner · 9 years ago
  10. 23d8306 ADT: Add AllocatorList, and use it for yaml::Token by Duncan P. N. Exon Smith · 9 years ago
  11. f947c3a ADT: Split ilist_node_traits into alloc and callback, NFC by Duncan P. N. Exon Smith · 9 years ago
  12. b29ec1e ADT: Remove ilist_*sentinel_traits, NFC by Duncan P. N. Exon Smith · 9 years ago
  13. 0d2ed35 ADT: Share code for embedded sentinel traits, NFC by Duncan P. N. Exon Smith · 9 years ago
  14. 0d955d0 Use the range variant of find instead of unpacking begin/end by David Majnemer · 9 years ago
  15. 98372e3 Simplify users of StringRef::{l,r}trim (NFC) by Vedant Kumar · 10 years ago
  16. 66da20a Refactor: Simplify boolean conditional return statements in llvm/lib/Support by Alexander Kornienko · 10 years ago
  17. 6eeaff1 Support: Stop relying on iterator auto-conversion, NFC by Duncan P. N. Exon Smith · 10 years ago
  18. f00654e Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC) by Alexander Kornienko · 10 years ago
  19. 70bc5f1 Fixed/added namespace ending comments using clang-tidy. NFC by Alexander Kornienko · 10 years ago
  20. 481dca2 YAML: Null terminate block scalar's value. by Alex Lorenz · 10 years ago
  21. 7236733 [YAML] Plug a memory leak by Benjamin Kramer · 10 years ago
  22. 4936030 Fix memory leak introduced in r237314. by Alex Lorenz · 10 years ago
  23. a22b250c YAML: Implement block scalar parsing. by Alex Lorenz · 10 years ago
  24. e4bcfbf YAML: Enable the YAMLParser tests. by Alex Lorenz · 10 years ago
  25. fe6f186 YAML: Extract the code that skips a comment into a separate method, NFC. by Alex Lorenz · 10 years ago
  26. 16132e6 Purge unused includes throughout libSupport. by Benjamin Kramer · 11 years ago
  27. ea68a94 Demote vectors to arrays. No functionality change. by Benjamin Kramer · 11 years ago
  28. 73d0652 Remove std::move that was preventing return value optimization. by Richard Trieu · 11 years ago
  29. 6dc4a8bc Fix some cases where StringRef was being passed by const reference. Remove const from some other StringRefs since its implicitly const already. by Craig Topper · 11 years ago
  30. 68669e3 yaml::Stream doesn't need to take ownership of the buffer. by Rafael Espindola · 11 years ago
  31. 1961f14 Explicitly pass ownership of the MemoryBuffer to AddNewSourceBuffer using std::unique_ptr by David Blaikie · 11 years ago
  32. b16ecf8 Convert an ownership comment with std::uinque_ptr. by Rafael Espindola · 11 years ago
  33. 8d399f8 [C++11] Replace some comparisons with 'nullptr' with simple boolean checks to reduce verbosity. by Craig Topper · 12 years ago
  34. c10719f [C++11] Make use of 'nullptr' in the Support library. by Craig Topper · 12 years ago
  35. 3161726 remove a bunch of unused private methods by Nuno Lopes · 12 years ago
  36. 56440fd Replace OwningPtr<T> with std::unique_ptr<T>. by Ahmed Charles · 12 years ago
  37. 002da5d [C++11] Switch all uses of the llvm_move macro to use std::move by Chandler Carruth · 12 years ago
  38. d12ccbd [weak vtables] Remove a bunch of weak vtables by Juergen Ributzka · 12 years ago
  39. 49109a2 Revert r194865 and r194874. by Alexey Samsonov · 12 years ago
  40. dbedae8 [weak vtables] Remove a bunch of weak vtables by Juergen Ributzka · 12 years ago
  41. e71f047 Can we move to C++11 already? by Michael J. Spencer · 12 years ago
  42. c064a9a [Support][YAML] Add support for accessing tags and tag handle substitution. by Michael J. Spencer · 12 years ago
  43. 3238fb7 Add ArrayRef constructor from None, and do the cleanups that this constructor enables by Dmitri Gribenko · 13 years ago
  44. ed0881b Use the new script to sort the includes of every file under lib. by Chandler Carruth · 13 years ago
  45. aba8270 Allow using MemoryBuffers with yaml::Stream directly. by Sean Silva · 13 years ago
  46. 8fb58f6 YAMLParser: Fix invalid reads when encountering incorrectly quoted scalar. by Benjamin Kramer · 13 years ago
  47. 5be8f60 Remove unused private member variables uncovered by the recent changes to clang's -Wunused-private-field. by Benjamin Kramer · 13 years ago
  48. dbeafa7 Convert comments to proper Doxygen comments. by Dmitri Gribenko · 13 years ago
  49. c10948d [Support/YAMLParser] Use rtrim on plain scalars. by Michael J. Spencer · 13 years ago
  50. 84b857e YAMLParser: get rid of global ctors & dtors. by Benjamin Kramer · 14 years ago
  51. 6033113 [Support/YAMLParser] Fix ASan found bugs. by Michael J. Spencer · 14 years ago
  52. a6c2c29 [Support/YAML] Properly fix unitialized variable warning by inserting a by Michael J. Spencer · 14 years ago
  53. f9774c3 Remove some potential warnings about variables used uninitialized. by Bill Wendling · 14 years ago
  54. 0aa0d3d YAMLParser: silence warning about tautological comparison on unsigned-char platforms. by Benjamin Kramer · 14 years ago
  55. a1355d1 Move yaml::Stream's dtor out of line so it can see Scanner's dtor. by Benjamin Kramer · 14 years ago
  56. afc0d6a Sorry about that. MSVC seems to accept just about any random string you give it ;/ by Michael J. Spencer · 14 years ago
  57. 22120c4 Add YAML parser to Support. by Michael J. Spencer · 14 years ago