]> granicus.if.org Git - clang/commitdiff
Fix typo in test program
authorDouglas Gregor <dgregor@apple.com>
Wed, 14 Jul 2010 00:09:17 +0000 (00:09 +0000)
committerDouglas Gregor <dgregor@apple.com>
Wed, 14 Jul 2010 00:09:17 +0000 (00:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108298 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TestUtils/pch-test.pl

index e097c5c00c09ac6964f886e4887a3d6e39dbb504..e4311e965bb7f6d3e19425860ce4e9ab0f039153 100755 (executable)
@@ -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");