forked from OSchip/llvm-project
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. llvm-svn: 14344
This commit is contained in:
parent
3a4916ea32
commit
64889c65e5
|
@ -101,7 +101,7 @@ sub GetRegex { # (Regex with ()'s, value)
|
|||
if (defined($1)) {
|
||||
return $1;
|
||||
}
|
||||
return "?";
|
||||
return "0";
|
||||
}
|
||||
|
||||
sub AddRecord {
|
||||
|
|
Loading…
Reference in New Issue