From: Douglas Gregor Date: Wed, 14 Jul 2010 00:09:17 +0000 (+0000) Subject: Fix typo in test program X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b0a996f6f32be4a5d115d70283715b6e18029955;p=clang Fix typo in test program git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108298 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TestUtils/pch-test.pl b/utils/TestUtils/pch-test.pl index e097c5c00c..e4311e965b 100755 --- a/utils/TestUtils/pch-test.pl +++ b/utils/TestUtils/pch-test.pl @@ -17,7 +17,7 @@ sub testfiles($$) { @files = `ls test/*/*.$suffix`; foreach $file (@files) { chomp($file); - my $code = system("clang- -fsyntax-only -x $language $file > /dev/null 2>&1"); + my $code = system("clang -fsyntax-only -x $language $file > /dev/null 2>&1"); if ($code == 0) { print("."); $code = system("clang -cc1 -emit-pch -x $language -o $file.pch $file > /dev/null 2>&1");