diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-04-27 23:43:27 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-04-27 23:43:27 +0000 |
commit | 6bdda82234ff106d561dc8c0ce5ca48b97726bbf (patch) | |
tree | 25ec333d3846224889bdfa9b85279066276b016c | |
parent | a459cc26f6c895ae48742a36203f753cea8b3e91 (diff) |
Update regex in scan-build for parsing statistics.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130347 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | tools/scan-build/scan-build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/scan-build/scan-build b/tools/scan-build/scan-build index ae96bd09a6..f835ca3520 100755 --- a/tools/scan-build/scan-build +++ b/tools/scan-build/scan-build @@ -290,7 +290,7 @@ sub AddStatLine { print $Line . "\n"; my $Regex = qr/(.*?)\ :\ (.*?)\ ->\ Total\ CFGBlocks:\ (\d+)\ \|\ Unreachable - \ CFGBlocks:\ (\d+)\ \|\ Aborted\ Block:\ (yes|no)\ \|\ Empty\ WorkList: + \ CFGBlocks:\ (\d+)\ \|\ Exhausted\ Block:\ (yes|no)\ \|\ Empty\ WorkList: \ (yes|no)/x; if ($Line !~ $Regex) { |