From: Joel E. Denny Date: Wed, 14 Aug 2019 02:56:20 +0000 (+0000) Subject: [FileCheck] Document FILECHECK_OPTS in -help X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c1911fe14ea329fd2a9988085e17e3d09a6e2c68;p=llvm [FileCheck] Document FILECHECK_OPTS in -help Reviewed By: thopre Differential Revision: https://reviews.llvm.org/D65707 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@368787 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/FileCheck/FileCheck.cpp b/utils/FileCheck/FileCheck.cpp index 879a3834eda..2710ccb406c 100644 --- a/utils/FileCheck/FileCheck.cpp +++ b/utils/FileCheck/FileCheck.cpp @@ -24,6 +24,10 @@ #include using namespace llvm; +static cl::extrahelp FileCheckOptsEnv( + "\nOptions are parsed from the environment variable FILECHECK_OPTS and\n" + "from the command line.\n"); + static cl::opt CheckFilename(cl::Positional, cl::desc(""), cl::Optional);