Make sure GetRegEx returns something gnuplot can deal with (a number, not

a ?) so that graphs don't bail if something fails in a test.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14344 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-06-23 06:36:34 +00:00
parent b06e8483be
commit a337f0c43d

View File

@ -101,7 +101,7 @@ sub GetRegex { # (Regex with ()'s, value)
if (defined($1)) {
return $1;
}
return "?";
return "0";
}
sub AddRecord {