[cfe-commits] r162830 - /cfe/trunk/tools/scan-build/scan-build

Ted Kremenek kremenek at apple.com
Wed Aug 29 00:22:34 PDT 2012


Author: kremenek
Date: Wed Aug 29 02:22:34 2012
New Revision: 162830

URL: http://llvm.org/viewvc/llvm-project?rev=162830&view=rev
Log:
Use double instead of single quote to expand .

Modified:
    cfe/trunk/tools/scan-build/scan-build

Modified: cfe/trunk/tools/scan-build/scan-build
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/scan-build/scan-build?rev=162830&r1=162829&r2=162830&view=diff
==============================================================================
--- cfe/trunk/tools/scan-build/scan-build (original)
+++ cfe/trunk/tools/scan-build/scan-build Wed Aug 29 02:22:34 2012
@@ -1526,7 +1526,7 @@
 SetHtmlEnv(\@ARGV, $HtmlDir);
 if ($AnalyzeHeaders) { push @AnalysesToRun,"-analyzer-opt-analyze-headers"; }
 if ($AnalyzerStats) { push @AnalysesToRun, '-analyzer-checker=debug.Stats'; }
-if ($MaxLoop > 0) { push @AnalysesToRun, '-analyzer-max-loop $MaxLoop'; }
+if ($MaxLoop > 0) { push @AnalysesToRun, "-analyzer-max-loop $MaxLoop"; }
 
 # Delay setting up other environment variables in case we can do true
 # interposition.





More information about the cfe-commits mailing list