Fix computation of compiled objects, contributed by Vladimir Merzliakov!

llvm-svn: 20564
This commit is contained in:
Chris Lattner 2005-03-11 20:17:04 +00:00
parent 27a3df07a0
commit 5490aae863
1 changed files with 1 additions and 1 deletions

View File

@ -414,7 +414,7 @@ if (!$NOCHECKOUT) {
my @Linked = split '\n', `grep Linking $BuildLog`;
my $NumExecutables = scalar(grep(/executable/, @Linked));
my $NumLibraries = scalar(grep(!/executable/, @Linked));
my $NumObjects = `grep '^Compiling' $BuildLog | wc -l` + 0;
my $NumObjects = `grep ']\: Compiling ' $BuildLog | wc -l` + 0;
my $ConfigTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$BuildLog";
my $ConfigTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$BuildLog";