1. 3560ff2 Return a std::unique_ptr when creating a new MemoryBuffer. by Rafael Espindola · 11 years ago
  2. 1961f14 Explicitly pass ownership of the MemoryBuffer to AddNewSourceBuffer using std::unique_ptr by David Blaikie · 11 years ago
  3. 1b9f936 FileCheck: Add a flag to allow checking empty input by Justin Bogner · 11 years ago
  4. 3f6481d Remove some calls to std::move. by Rafael Espindola · 11 years ago
  5. ce5dd1a Simplify the code a bit with std::unique_ptr. by Rafael Espindola · 11 years ago
  6. 24412b1 Fix FileCheck crash when empty prefix is passed. by Eli Bendersky · 11 years ago
  7. 56ccdbb Add FileCheck -implicit-check-not option to allow stricter tests without adding too many CHECK-NOTs manually. by Alexander Kornienko · 11 years ago
  8. adf21f2 Update the MemoryBuffer API to use ErrorOr. by Rafael Espindola · 11 years ago
  9. e69170a Revert "Introduce a string_ostream string builder facilty" by Alp Toker · 11 years ago
  10. 6147173 Introduce a string_ostream string builder facilty by Alp Toker · 11 years ago
  11. c049c65 Remove the last uses of 'using std::error_code' by Rafael Espindola · 11 years ago
  12. 3acea39 Don't use 'using std::error_code' in include/llvm. by Rafael Espindola · 11 years ago
  13. a6e9c3e Remove system_error.h. by Rafael Espindola · 11 years ago
  14. 66f09ad [C++11] Use 'nullptr'. by Craig Topper · 11 years ago
  15. 592fe88 When a CHECK-NEXT fails because there was no match on the next line, include by Richard Smith · 12 years ago
  16. 56440fd Replace OwningPtr<T> with std::unique_ptr<T>. by Ahmed Charles · 12 years ago
  17. 96c9d95 [C++11] Replace OwningPtr::take() with OwningPtr::release(). by Ahmed Charles · 12 years ago
  18. 81e5cd9 FileCheck: Print a nice error message for missing closing ']' in regex vars. by Adrian Prantl · 12 years ago
  19. 6f4f77b Expose FileCheck's AddFixedStringToRegEx as Regex::escape by Hans Wennborg · 12 years ago
  20. 43b5f57 FileCheck: fix a bug with multiple --check-prefix options. Similar to r194565 by Daniel Sanders · 12 years ago
  21. a7181a1 FileCheck: fix matching of one check-prefix is a prefix of another by Alexey Samsonov · 12 years ago
  22. 21a340f FileCheck: fix a bug with multiple --check-prefix options. by Alexey Samsonov · 12 years ago
  23. 13df462 Allow multiple check prefixes in FileCheck. by Matt Arsenault · 12 years ago
  24. 981af00 Add missing #include's to cctype when using isdigit/alpha/etc. by Will Dietz · 12 years ago
  25. e93a3a0 Really fix CHECK-LABEL and CHECK-DAG interaction. This actually just restores the initial implementation that was in r186162 but got lost in some subsequent refactoring. More explicit variable names and comments are present now to hopefully prevent repeat regression, as well as another test. by Stephen Lin · 12 years ago
  26. 5c8becd Fix handling of CHECK-DAG inside of CHECK-LABEL. by Rafael Espindola · 12 years ago
  27. ce3e4fc Missed using check type enum in one place by Matt Arsenault · 12 years ago
  28. c4d2d47 Use function's argument instead of the global flag. by Matt Arsenault · 12 years ago
  29. 3882097 FileCheck refactor: use enum instead of bunch of bools by Matt Arsenault · 12 years ago
  30. 398b32a FileCheck: Fix stray quote in CHECK-LABEL error message. by Stephen Lin · 12 years ago
  31. c2735158 [FileCheck] Fix a bug that cause FileCheck to misidentify check-prefix by Rui Ueyama · 12 years ago
  32. cf708c3 Fix handling of CHECK-DAG combined with CHECK-NOT by Tim Northover · 12 years ago
  33. f8bd2e5 Add new directive called CHECK-LABEL to FileCheck. by Stephen Lin · 12 years ago
  34. 8c81172 keep only the StringRef version of getFileOrSTDIN. by Rafael Espindola · 12 years ago
  35. 91a1b2c Add 'CHECK-DAG' support by Michael Liao · 12 years ago
  36. dcc7d48 Refactor string checking. No functionality change. by Michael Liao · 12 years ago
  37. 0b707eb Remove SMLoc paired with CHECK-NOT patterns. Not functionality change. by Michael Liao · 12 years ago
  38. 61bed2f Remove tailing whitespaces by Michael Liao · 12 years ago
  39. e963d66 Plug a memory leak in FileCheck when the input file is empty. by Benjamin Kramer · 13 years ago
  40. 83c74e9 Add static cast to unsigned char whenever a character classification function is called with a signed char argument, in order to avoid assertions in Windows Debug configuration. by Guy Benyei · 13 years ago
  41. 5ea04c3 Canonicalize line endings to Linux style also when the --strict-whitespace flag is in use. This flag is supposed to affect horizontal whitespaces only. by Guy Benyei · 13 years ago
  42. 91d19d8 Sort the #include lines for utils/... by Chandler Carruth · 13 years ago
  43. 061d2ba Fix a bug in FileCheck that wouldn't let define variables as follows: by Eli Bendersky · 13 years ago
  44. e8b8f1b Support referencing variables defined on the same line. by Eli Bendersky · 13 years ago
  45. 43d50d4 Clean up whitespace and add comments by Eli Bendersky · 13 years ago
  46. 8e1c647 Make FileCheck return 2 in case of an error as documented, by Eli Bendersky · 13 years ago
  47. 2649144 FileCheck: remove useless 'continue' at the end of a 'while(){}' loop. by Dmitri Gribenko · 13 years ago
  48. 92987fb Support for [[@LINE]], [[@LINE+<offset>]], [[@LINE-<offset>]] expressions in by Alexander Kornienko · 13 years ago
  49. 6e9fcd6 Clarify comment. by Dmitri Gribenko · 13 years ago
  50. ef878a8 FileCheck: Fix off-by-one bug that made CHECK-NOT: ignore the next character after the colon. by Benjamin Kramer · 13 years ago
  51. d946696 Revert "Add -exact-match option to FileCheck to allow clients to do exact matches without using regular expressions." by Ted Kremenek · 13 years ago
  52. 1cb637c Add -exact-match option to FileCheck to allow clients to do exact matches without using regular expressions. by Ted Kremenek · 13 years ago
  53. 03b80a4 Make SMDiagnostic a little more sane. Instead of passing around note/warning/error as a by Chris Lattner · 14 years ago
  54. a3a0681 Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang does. Enhance by Chris Lattner · 14 years ago
  55. e53c95f fix PR9629 - We were lowering regexes like a{{b|c}}d into ab|cd, which by Chris Lattner · 15 years ago
  56. 53e0679 various cleanups, no functionality change. by Chris Lattner · 15 years ago
  57. b692bed emit a specific error when the input file is empty. This fixes by Chris Lattner · 15 years ago
  58. 39a0ffc MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> via an out parm. by Michael J. Spencer · 15 years ago
  59. 7b6fef8 Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code &ec. And fix clients. by Michael J. Spencer · 15 years ago
  60. 447762d Merge System into Support. by Michael J. Spencer · 15 years ago
  61. fd781bf FileCheck: Eliminate DOSish \r from input file. by NAKAMURA Takumi · 15 years ago
  62. eba5582 Teach FileCheck to handle trailing CHECK-NOT patterns. by Jakob Stoklund Olesen · 15 years ago
  63. defcda2 Trailing whitespace. by Mikhail Glushenkov · 15 years ago
  64. 0e45d24 stringref-ize the MemoryBuffer::get apis. This requires by Chris Lattner · 16 years ago
  65. c069cc8 FileCheck: Don't print "possibly intended match" line if it would match the by Daniel Dunbar · 16 years ago
  66. e9aa36c FileCheck: When looking for "possible matches", only compare against the prefix by Daniel Dunbar · 16 years ago
  67. 2bf486e Minor code cleanup. by Dan Gohman · 16 years ago
  68. df22bbf Skip whitespace when looking for a potential intended match. Before: by Dan Gohman · 16 years ago
  69. 838fb09 Fix the position of the caret in the FileCheck error message. Before: by Dan Gohman · 16 years ago
  70. 864b1aa FileCheck: Switch "possible match" calculation to use StringRef::edit_distance. by Daniel Dunbar · 16 years ago
  71. 53b95c4 Fix FileCheck crash when fuzzy scanning starting at the end of the file. by Daniel Dunbar · 16 years ago
  72. fd29d88 FileCheck, PR5239: Try to find the intended match on failures, but looking for a by Daniel Dunbar · 16 years ago
  73. e0ef65a FileCheck: When a string using variable references fails to match, print by Daniel Dunbar · 16 years ago
  74. 57cb733 Allow '_' in FileCheck variable names, it is nice to have at least one by Daniel Dunbar · 16 years ago
  75. 8879e06 implement and document support for filecheck variables. This by Chris Lattner · 16 years ago
  76. 37d8015 remove support for "NoSub" from regex. It seems like a minor optimization by Chris Lattner · 16 years ago
  77. 0a4c44b reject attempts to use ()'s in patterns, these are reserved for filecheck. by Chris Lattner · 16 years ago
  78. b16ab0c reimplement the regex matching strategy by building a single by Chris Lattner · 16 years ago
  79. 221460e special case Patterns that are a single fixed string. This is a microscopic by Chris Lattner · 16 years ago
  80. 712e8e0 filecheck should not match a \n with a . by Chris Lattner · 16 years ago
  81. b121a24 turn a std::pair into a real class. by Chris Lattner · 16 years ago
  82. f08d2db add and document regex support for FileCheck. You can now do stuff like: by Chris Lattner · 16 years ago
  83. a2f8fc5 Use CanonicalizeInputFile to canonicalize the entire buffer containing the by Chris Lattner · 16 years ago
  84. 74d5073 change 'not' matching to use Pattern, move pattern parsing logic into by Chris Lattner · 16 years ago
  85. 3b40b44 refactor out the match string into its own Pattern class. by Chris Lattner · 16 years ago
  86. b9f2bf4 fix a FileCheck bug where: by Chris Lattner · 16 years ago
  87. 3718358 rewrite CountNumNewlinesBetween to be in terms of StringRef. by Chris Lattner · 16 years ago
  88. 236d2d5 implement and document support for CHECK-NOT by Chris Lattner · 16 years ago
  89. caa5fc0 rewrite FileCheck in terms of StringRef instead of manual pointer pairs. by Chris Lattner · 16 years ago
  90. 107c21e when emitting errors about CHECK-NEXT directives, show the line that the by Chris Lattner · 16 years ago
  91. da108b4 implement support for CHECK-NEXT: in filecheck. by Chris Lattner · 16 years ago
  92. 10f10ce simplify some code. by Chris Lattner · 16 years ago
  93. 6a7b917 rewrite FindStringInBuffer to use an explicit loop instead of by Chris Lattner · 16 years ago
  94. 26cccfe Instead of using an std::pair, use a custom struct. by Chris Lattner · 16 years ago
  95. 6eca7ab Fix an ENABLE_EXPENSIVE_CHECKS error. by Daniel Dunbar · 16 years ago
  96. 8bda49a Tweak comment. by Daniel Dunbar · 16 years ago
  97. 0029c0e improve filecheck's "scanning from here" caret position. by Chris Lattner · 16 years ago
  98. 2c3e5cd make filecheck default to canonicalizing horizontal whitespace by Chris Lattner · 16 years ago
  99. aedd818 stop on the first file mismatch. by Chris Lattner · 16 years ago
  100. ee3c74f Add a new little "FileCheck" utility for regression testing. by Chris Lattner · 16 years ago