diff options
author | Joel E. Denny <jdenny.ornl@gmail.com> | 2018-07-13 03:08:23 +0000 |
---|---|---|
committer | Joel E. Denny <jdenny.ornl@gmail.com> | 2018-07-13 03:08:23 +0000 |
commit | dc5ba317b1c15355560fc3bf42d02f5ef3e9cf3b (patch) | |
tree | 8dde563350e900a7cd9bf4903695eb19eaa62eae /llvm/docs/CommandGuide | |
parent | 01c762b9fd49aaa0cfd76d425155b7aff1b8e135 (diff) | |
download | bcm5719-llvm-dc5ba317b1c15355560fc3bf42d02f5ef3e9cf3b.tar.gz bcm5719-llvm-dc5ba317b1c15355560fc3bf42d02f5ef3e9cf3b.zip |
[FileCheck] Implement -v and -vv for tracing matches
-v prints all directive pattern matches.
-vv additionally prints info that might be noise to users but that can
be helpful to FileCheck developers.
To maximize code reuse and to make diagnostics more consistent, this
patch also adjusts and extends some of the existing diagnostics.
CHECK-NOT failures now report variables uses. Many more diagnostics
now report the check prefix and kind of directive.
Reviewed By: probinson
Differential Revision: https://reviews.llvm.org/D47114
llvm-svn: 336967
Diffstat (limited to 'llvm/docs/CommandGuide')
-rw-r--r-- | llvm/docs/CommandGuide/FileCheck.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/docs/CommandGuide/FileCheck.rst b/llvm/docs/CommandGuide/FileCheck.rst index ac7e81024d1..dfa2fd29515 100644 --- a/llvm/docs/CommandGuide/FileCheck.rst +++ b/llvm/docs/CommandGuide/FileCheck.rst @@ -95,6 +95,16 @@ OPTIONS Show the version number of this program. +.. option:: -v + + Print directive pattern matches. + +.. option:: -vv + + Print information helpful in diagnosing internal FileCheck issues, such as + discarded overlapping ``CHECK-DAG:`` matches, implicit EOF pattern matches, + and ``CHECK-NOT:`` patterns that do not have matches. Implies ``-v``. + .. option:: --allow-deprecated-dag-overlap Enable overlapping among matches in a group of consecutive ``CHECK-DAG:`` |