diff options
author | Sandeep Patel <deeppatel1987@gmail.com> | 2011-03-16 19:14:34 +0000 |
---|---|---|
committer | Sandeep Patel <deeppatel1987@gmail.com> | 2011-03-16 19:14:34 +0000 |
commit | 1040c227efc6821cd39795206c178894470a1a48 (patch) | |
tree | 4911a4c1863e87641dcaf12556f76aa75a207560 /lib/Frontend/CompilerInvocation.cpp | |
parent | 28ac87e1a22ee15f284643d9007640d25b1aab5b (diff) |
Fix duplicate argument processing
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@127746 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | lib/Frontend/CompilerInvocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/CompilerInvocation.cpp b/lib/Frontend/CompilerInvocation.cpp index d8de7c08b4..859eb74a8a 100644 --- a/lib/Frontend/CompilerInvocation.cpp +++ b/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) { |