[cfe-commits] r108298 - /cfe/trunk/utils/TestUtils/pch-test.pl

Douglas Gregor dgregor at apple.com
Tue Jul 13 17:09:17 PDT 2010


Author: dgregor
Date: Tue Jul 13 19:09:17 2010
New Revision: 108298

URL: http://llvm.org/viewvc/llvm-project?rev=108298&view=rev
Log:
Fix typo in test program

Modified:
    cfe/trunk/utils/TestUtils/pch-test.pl

Modified: cfe/trunk/utils/TestUtils/pch-test.pl
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/TestUtils/pch-test.pl?rev=108298&r1=108297&r2=108298&view=diff
==============================================================================
--- cfe/trunk/utils/TestUtils/pch-test.pl (original)
+++ cfe/trunk/utils/TestUtils/pch-test.pl Tue Jul 13 19:09:17 2010
@@ -17,7 +17,7 @@
   @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");





More information about the cfe-commits mailing list