]> granicus.if.org Git - llvm/commit
FileCheck [2/12]: Stricter parsing of -D option
authorThomas Preud'homme <thomasp@graphcore.ai>
Mon, 29 Apr 2019 13:32:36 +0000 (13:32 +0000)
committerThomas Preud'homme <thomasp@graphcore.ai>
Mon, 29 Apr 2019 13:32:36 +0000 (13:32 +0000)
commit4a42ca47715b9c0875aa8bedc0169e273786bfee
treebe5ca583ad08a8eedf0440c3933f858446861395
parente8fab5b74fa3ccd4e35c4efa1b009edfbeb18501
FileCheck [2/12]: Stricter parsing of -D option

Summary:
This patch is part of a patch series to add support for FileCheck
numeric expressions. This specific patch gives earlier and better
diagnostics for the -D option.

Prior to this change, parsing of -D option was very loose: it assumed
that there is an equal sign (which to be fair is now checked by the
FileCheck executable) and that the part on the left of the equal sign
was a valid variable name. This commit adds logic to ensure that this
is the case and gives diagnostic when it is not, making it clear that
the issue came from a command-line option error. This is achieved by
sharing the variable parsing code into a new function ParseVariable.

Copyright:
    - Linaro (changes up to diff 183612 of revision D55940)
    - GraphCore (changes in later versions of revision D55940 and
                 in new revision created off D55940)

Reviewers: jhenderson, chandlerc, jdenny, probinson, grimar, arichardson, rnk

Subscribers: hiraditya, llvm-commits, probinson, dblaikie, grimar, arichardson, tra, rnk, kristina, hfinkel, rogfer01, JonChesterfield

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D60382

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@359447 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/Support/FileCheck.h
lib/Support/FileCheck.cpp
test/FileCheck/defines.txt
unittests/Support/FileCheckTest.cpp