| Age | Commit message (Expand) | Author | Files | Lines | 
| 2013-02-06 | Canonicalize line endings to Linux style also when the --strict-whitespace fl... | Guy Benyei | 1 | -10/+14 | 
| 2012-12-04 | Sort the #include lines for utils/... | Chandler Carruth | 1 | -4/+4 | 
| 2012-12-02 | Fix a bug in FileCheck that wouldn't let define variables as follows: | Eli Bendersky | 1 | -4/+47 | 
| 2012-12-01 | Support referencing variables defined on the same line. | Eli Bendersky | 1 | -16/+40 | 
| 2012-11-30 | Clean up whitespace and add comments | Eli Bendersky | 1 | -7/+8 | 
| 2012-11-30 | Make FileCheck return 2 in case of an error as documented, | Eli Bendersky | 1 | -2/+2 | 
| 2012-11-15 | FileCheck: remove useless 'continue' at the end of a 'while(){}' loop. | Dmitri Gribenko | 1 | -1/+0 | 
| 2012-11-14 | Support for [[@LINE]], [[@LINE+<offset>]], [[@LINE-<offset>]] expressions in | Alexander Kornienko | 1 | -27/+94 | 
| 2012-09-21 | Clarify comment. | Dmitri Gribenko | 1 | -1/+1 | 
| 2012-09-18 | FileCheck: Fix off-by-one bug that made CHECK-NOT: ignore the next character ... | Benjamin Kramer | 1 | -2/+2 | 
| 2012-09-08 | Revert "Add -exact-match option to FileCheck to allow clients to do exact mat... | Ted Kremenek | 1 | -5/+1 | 
| 2012-09-07 | Add -exact-match option to FileCheck to allow clients to do exact matches wit... | Ted Kremenek | 1 | -1/+5 | 
| 2011-10-16 | Make SMDiagnostic a little more sane.  Instead of passing around note/warning... | Chris Lattner | 1 | -36/+37 | 
| 2011-10-16 | Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang does... | Chris Lattner | 1 | -1/+1 | 
| 2011-04-09 | fix PR9629 - We were lowering regexes like a{{b|c}}d into ab|cd, which | Chris Lattner | 1 | -0/+8 | 
| 2011-04-09 | various cleanups, no functionality change. | Chris Lattner | 1 | -10/+6 | 
| 2011-02-09 | emit a specific error when the input file is empty.  This fixes  | Chris Lattner | 1 | -0/+5 | 
| 2010-12-16 | MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> v... | Michael J. Spencer | 1 | -6/+9 | 
| 2010-12-09 | Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code... | Michael J. Spencer | 1 | -8/+7 | 
| 2010-11-29 | Merge System into Support. | Michael J. Spencer | 1 | -1/+1 | 
| 2010-11-14 | FileCheck: Eliminate DOSish \r from input file. | NAKAMURA Takumi | 1 | -0/+5 | 
| 2010-10-15 | Teach FileCheck to handle trailing CHECK-NOT patterns. | Jakob Stoklund Olesen | 1 | -9/+22 | 
| 2010-08-20 | Trailing whitespace. | Mikhail Glushenkov | 1 | -80/+80 | 
| 2010-04-05 | stringref-ize the MemoryBuffer::get apis.  This requires | Chris Lattner | 1 | -4/+2 | 
| 2010-03-19 | FileCheck: Don't print "possibly intended match" line if it would match the | Daniel Dunbar | 1 | -5/+6 | 
| 2010-01-30 | FileCheck: When looking for "possible matches", only compare against the prefix | Daniel Dunbar | 1 | -1/+4 | 
| 2010-01-29 | Minor code cleanup. | Dan Gohman | 1 | -1/+1 | 
| 2010-01-29 | Skip whitespace when looking for a potential intended match. | Dan Gohman | 1 | -0/+5 | 
| 2010-01-29 | Fix the position of the caret in the FileCheck error message. | Dan Gohman | 1 | -1/+4 | 
| 2010-01-29 | FileCheck: Switch "possible match" calculation to use StringRef::edit_distance. | Daniel Dunbar | 1 | -6/+1 | 
| 2009-11-29 | Fix FileCheck crash when fuzzy scanning starting at the end of the file. | Daniel Dunbar | 1 | -1/+1 | 
| 2009-11-22 | FileCheck, PR5239: Try to find the intended match on failures, but looking for a | Daniel Dunbar | 1 | -4/+60 | 
| 2009-11-22 | FileCheck: When a string using variable references fails to match, print | Daniel Dunbar | 1 | -4/+50 | 
| 2009-11-22 | Allow '_' in FileCheck variable names, it is nice to have at least one | Daniel Dunbar | 1 | -2/+3 | 
| 2009-09-27 | implement and document support for filecheck variables.  This | Chris Lattner | 1 | -43/+172 | 
| 2009-09-26 | remove support for "NoSub" from regex.  It seems like a minor optimization | Chris Lattner | 1 | -1/+1 | 
| 2009-09-25 | reject attempts to use ()'s in patterns, these are reserved for filecheck. | Chris Lattner | 1 | -3/+15 | 
| 2009-09-25 | reimplement the regex matching strategy by building a single | Chris Lattner | 1 | -88/+51 | 
| 2009-09-25 | special case Patterns that are a single fixed string.  This is a microscopic | Chris Lattner | 1 | -0/+16 | 
| 2009-09-25 | filecheck should not match a \n with a . | Chris Lattner | 1 | -3/+1 | 
| 2009-09-25 | turn a std::pair into a real class. | Chris Lattner | 1 | -23/+34 | 
| 2009-09-24 | add and document regex support for FileCheck.  You can now do stuff like: | Chris Lattner | 1 | -11/+116 | 
| 2009-09-24 | Use CanonicalizeInputFile to canonicalize the entire buffer containing the | Chris Lattner | 1 | -57/+40 | 
| 2009-09-24 | change 'not' matching to use Pattern, move pattern parsing logic into | Chris Lattner | 1 | -32/+51 | 
| 2009-09-24 | refactor out the match string into its own Pattern class. | Chris Lattner | 1 | -33/+50 | 
| 2009-09-21 | fix a FileCheck bug where: | Chris Lattner | 1 | -3/+3 | 
| 2009-09-20 | rewrite CountNumNewlinesBetween to be in terms of StringRef. | Chris Lattner | 1 | -13/+15 | 
| 2009-09-20 | implement and document support for CHECK-NOT | Chris Lattner | 1 | -8/+50 | 
| 2009-09-20 | rewrite FileCheck in terms of StringRef instead of manual pointer pairs. | Chris Lattner | 1 | -68/+37 | 
| 2009-08-16 | when emitting errors about CHECK-NEXT directives, show the line that the  | Chris Lattner | 1 | -2/+6 |