summaryrefslogtreecommitdiffstats
path: root/clang/lib/Frontend/CompilerInvocation.cpp
diff options
context:
space:
mode:
authorSandeep Patel <deeppatel1987@gmail.com>2011-03-16 19:14:34 +0000
committerSandeep Patel <deeppatel1987@gmail.com>2011-03-16 19:14:34 +0000
commit5a4a0f75d463ef58cd1f66fd2a83d1d4a4f7140d (patch)
treee66e3debc4246b56c399c53c90c4fc1b63493fc8 /clang/lib/Frontend/CompilerInvocation.cpp
parent7d8a0b52d4784c1c98081e355eed5d06749f5f47 (diff)
downloadbcm5719-llvm-5a4a0f75d463ef58cd1f66fd2a83d1d4a4f7140d.tar.gz
bcm5719-llvm-5a4a0f75d463ef58cd1f66fd2a83d1d4a4f7140d.zip
Fix duplicate argument processing
llvm-svn: 127746
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r--clang/lib/Frontend/CompilerInvocation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp
index d8de7c08b48..859eb74a8a0 100644
--- a/clang/lib/Frontend/CompilerInvocation.cpp
+++ b/clang/lib/Frontend/CompilerInvocation.cpp
@@ -98,7 +98,7 @@ static void AnalyzerOptsToArgs(const AnalyzerOptions &Opts,
Res.push_back("-trim-egraph");
if (Opts.VisualizeEGDot)
Res.push_back("-analyzer-viz-egraph-graphviz");
- if (Opts.VisualizeEGDot)
+ if (Opts.VisualizeEGUbi)
Res.push_back("-analyzer-viz-egraph-ubigraph");
for (unsigned i = 0, e = Opts.CheckersControlList.size(); i != e; ++i) {
OpenPOWER on IntegriCloud