Use double instead of single quote to expand .

llvm-svn: 162830
This commit is contained in:
Ted Kremenek 2012-08-29 07:22:34 +00:00
parent a999c66292
commit e29d2b8a66
1 changed files with 1 additions and 1 deletions

View File

@ -1526,7 +1526,7 @@ Diag("Using '$Clang' for static analysis\n");
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.