index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
utils
/
FileCheck
/
FileCheck.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Search for llvm-symbolizer binary in the same directory as argv[0], before
Richard Smith
2016-06-09
1
-1
/
+1
*
FileCheck: dump command line context with empty input
Xinliang David Li
2016-05-27
1
-0
/
+8
*
Reapply r262092: [FileCheck] Abort if -NOT is combined with another suffix.
Paul Robinson
2016-02-29
1
-1
/
+18
*
Revert r262092, caught LLD tests
Paul Robinson
2016-02-26
1
-18
/
+1
*
[FileCheck] Abort if -NOT is combined with another suffix.
Paul Robinson
2016-02-26
1
-1
/
+18
*
Add -match-full-lines argument to FileCheck.
James Y Knight
2016-02-11
1
-17
/
+32
*
StringRef-ify some Option APIs
David Blaikie
2015-11-17
1
-1
/
+1
*
Cleanup places that passed SMLoc by const reference to pass it by value inste...
Craig Topper
2015-09-20
1
-1
/
+1
*
[FileCheck] Use range-based for loops. NFC.
Benjamin Kramer
2015-09-10
1
-26
/
+14
*
Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial types
Benjamin Kramer
2015-05-29
1
-8
/
+4
*
[NFC] Updating FileCheck to reduce the std::vector interface used via cl::list.
Chris Bieneman
2015-04-29
1
-6
/
+8
*
Fix FileCheck: substr() expect the length of the string as 2nd arg
Mehdi Amini
2015-03-12
1
-2
/
+1
*
FileCheck: Add CHECK-SAME
Duncan P. N. Exon Smith
2015-02-26
1
-2
/
+47
*
Make StringSet::insert return pair<iterator, bool> like other self-associativ...
David Blaikie
2014-11-19
1
-1
/
+1
*
Return a std::unique_ptr when creating a new MemoryBuffer.
Rafael Espindola
2014-08-27
1
-4
/
+5
*
Explicitly pass ownership of the MemoryBuffer to AddNewSourceBuffer using std...
David Blaikie
2014-08-21
1
-18
/
+19
*
FileCheck: Add a flag to allow checking empty input
Justin Bogner
2014-08-07
1
-1
/
+6
*
Remove some calls to std::move.
Rafael Espindola
2014-08-01
1
-1
/
+1
*
Simplify the code a bit with std::unique_ptr.
Rafael Espindola
2014-08-01
1
-9
/
+5
*
Fix FileCheck crash when empty prefix is passed.
Eli Bendersky
2014-07-29
1
-0
/
+4
*
Add FileCheck -implicit-check-not option to allow stricter tests without addi...
Alexander Kornienko
2014-07-11
1
-1
/
+28
*
Update the MemoryBuffer API to use ErrorOr.
Rafael Espindola
2014-07-06
1
-10
/
+13
*
Revert "Introduce a string_ostream string builder facilty"
Alp Toker
2014-06-26
1
-1
/
+2
*
Introduce a string_ostream string builder facilty
Alp Toker
2014-06-26
1
-2
/
+1
*
Remove the last uses of 'using std::error_code'
Rafael Espindola
2014-06-13
1
-5
/
+2
*
Don't use 'using std::error_code' in include/llvm.
Rafael Espindola
2014-06-12
1
-0
/
+1
*
Remove system_error.h.
Rafael Espindola
2014-06-12
1
-1
/
+1
*
[C++11] Use 'nullptr'.
Craig Topper
2014-06-08
1
-1
/
+1
*
When a CHECK-NEXT fails because there was no match on the next line, include
Richard Smith
2014-04-07
1
-2
/
+9
*
Replace OwningPtr<T> with std::unique_ptr<T>.
Ahmed Charles
2014-03-06
1
-3
/
+2
*
[C++11] Replace OwningPtr::take() with OwningPtr::release().
Ahmed Charles
2014-03-05
1
-2
/
+2
*
FileCheck: Print a nice error message for missing closing ']' in regex vars.
Adrian Prantl
2014-01-03
1
-4
/
+9
*
Expose FileCheck's AddFixedStringToRegEx as Regex::escape
Hans Wennborg
2013-12-12
1
-31
/
+3
*
FileCheck: fix a bug with multiple --check-prefix options. Similar to r194565
Daniel Sanders
2013-11-20
1
-2
/
+3
*
FileCheck: fix matching of one check-prefix is a prefix of another
Alexey Samsonov
2013-11-13
1
-10
/
+11
*
FileCheck: fix a bug with multiple --check-prefix options.
Alexey Samsonov
2013-11-13
1
-3
/
+3
*
Allow multiple check prefixes in FileCheck.
Matt Arsenault
2013-11-10
1
-80
/
+237
*
Add missing #include's to cctype when using isdigit/alpha/etc.
Will Dietz
2013-10-12
1
-0
/
+1
*
Really fix CHECK-LABEL and CHECK-DAG interaction. This actually just restores...
Stephen Lin
2013-10-11
1
-9
/
+17
*
Fix handling of CHECK-DAG inside of CHECK-LABEL.
Rafael Espindola
2013-10-11
1
-6
/
+4
*
Missed using check type enum in one place
Matt Arsenault
2013-09-17
1
-6
/
+6
*
Use function's argument instead of the global flag.
Matt Arsenault
2013-09-17
1
-3
/
+3
*
FileCheck refactor: use enum instead of bunch of bools
Matt Arsenault
2013-09-17
1
-76
/
+88
*
FileCheck: Fix stray quote in CHECK-LABEL error message.
Stephen Lin
2013-08-16
1
-1
/
+1
*
[FileCheck] Fix a bug that cause FileCheck to misidentify check-prefix
Rui Ueyama
2013-08-12
1
-2
/
+26
*
Fix handling of CHECK-DAG combined with CHECK-NOT
Tim Northover
2013-08-02
1
-2
/
+1
*
Add new directive called CHECK-LABEL to FileCheck.
Stephen Lin
2013-07-12
1
-29
/
+94
*
keep only the StringRef version of getFileOrSTDIN.
Rafael Espindola
2013-06-25
1
-2
/
+2
*
Add 'CHECK-DAG' support
Michael Liao
2013-05-14
1
-23
/
+147
*
Refactor string checking. No functionality change.
Michael Liao
2013-05-14
1
-62
/
+94
[prev]
[next]