diff options
author | Chris Lattner <sabre@nondot.org> | 2004-01-09 18:39:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-01-09 18:39:04 +0000 |
commit | be39e43d33fc1436cff6d07ce328068fdcf002d4 (patch) | |
tree | 2d2f24708ca70bae340ec6185928adfe1c6a6ee2 | |
parent | b3da2fd16f6863805dd88b5abce12c82439d6070 (diff) | |
download | external_llvm-be39e43d33fc1436cff6d07ce328068fdcf002d4.zip external_llvm-be39e43d33fc1436cff6d07ce328068fdcf002d4.tar.gz external_llvm-be39e43d33fc1436cff6d07ce328068fdcf002d4.tar.bz2 |
Fix annoying warnings. W doesn't have a revision number
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10736 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/NightlyTest.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index b1e907f..37d6ede 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -281,8 +281,8 @@ foreach $File (@CVSHistory) { my ($Type, $Date, $UID, $Rev, $Filename); if ($File =~ /([AMRUGC]) ($DateRE) ([^ ]+) +([^ ]+) +([^ ]+) +([^ ]+)/) { ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5"); - } elsif ($File =~ /([W]) ($DateRE) ([^ ]+) +([^ ]+) +([^ ]+)/) { - ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5"); + } elsif ($File =~ /([W]) ($DateRE) ([^ ]+) +([^ ]+)/) { + ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$5/$4"); } elsif ($File =~ /([O]) ($DateRE) ([^ ]+) +([^ ]+)/) { ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$4/"); } else { |