[analyzer] This eliminates regression caused by r236423.
authorAnton Yartsev <anton.yartsev@gmail.com>
Tue, 5 May 2015 19:43:37 +0000 (19:43 +0000)
committerAnton Yartsev <anton.yartsev@gmail.com>
Tue, 5 May 2015 19:43:37 +0000 (19:43 +0000)
Wrap an argument with quotes only if it has spaces.

llvm-svn: 236533

clang/tools/scan-build/ccc-analyzer

index 5ee4f62..8e12126 100755 (executable)
@@ -179,7 +179,11 @@ sub GetCCArgs {
   die "could not find clang line\n" if (!defined $line);
   # Strip leading and trailing whitespace characters.
   $line =~ s/^\s+|\s+$//g;
-  my @items = quotewords('\s+', 1, $line);
+  my @items = quotewords('\s+', 0, $line);
+  # Wrap arguments that have spaces with quotes.
+  foreach (@items) {
+    $_ = qq/"$_"/ if (/\s+/);
+  }
   my $cmd = shift @items;
   die "cannot find 'clang' in 'clang' command\n" if (!($cmd =~ /clang/));
   return \@items;