diff options
author | Paul Robinson <paul_robinson@playstation.sony.com> | 2015-03-05 23:04:26 +0000 |
---|---|---|
committer | Paul Robinson <paul_robinson@playstation.sony.com> | 2015-03-05 23:04:26 +0000 |
commit | 282b3d3ff5215d406cf9cf5fe129ea875951f011 (patch) | |
tree | 169819156de632e4fa4b61713a82b2c9dc447a0b /llvm/docs | |
parent | 68a640c080b624a8df221cc18ab48e1a8c49fb1c (diff) | |
download | bcm5719-llvm-282b3d3ff5215d406cf9cf5fe129ea875951f011.tar.gz bcm5719-llvm-282b3d3ff5215d406cf9cf5fe129ea875951f011.zip |
All FileCheck directives allow patterns.
llvm-svn: 231418
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/CommandGuide/FileCheck.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/CommandGuide/FileCheck.rst b/llvm/docs/CommandGuide/FileCheck.rst index 72db660fb5e..f48bf474519 100644 --- a/llvm/docs/CommandGuide/FileCheck.rst +++ b/llvm/docs/CommandGuide/FileCheck.rst @@ -364,7 +364,7 @@ simply uniquely match a single line in the file being verified. FileCheck Pattern Matching Syntax ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -The "``CHECK:``" and "``CHECK-NOT:``" directives both take a pattern to match. +All FileCheck directives take a pattern to match. For most uses of FileCheck, fixed string matching is perfectly sufficient. For some things, a more flexible form of matching is desired. To support this, FileCheck allows you to specify regular expressions in matching strings, |