Added Ubigraph visualization for the static analyzer (this is pretty alpha quality).


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55442 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Driver/AnalysisConsumer.h b/Driver/AnalysisConsumer.h
index 5a2550d..daec6f3 100644
--- a/Driver/AnalysisConsumer.h
+++ b/Driver/AnalysisConsumer.h
@@ -28,8 +28,10 @@
                                     const LangOptions& lopts,
                                     const std::string& fname,
                                     const std::string& htmldir,
-                                    bool visualize, bool trim,
-                                    bool analyzeAll);
+                                    bool VisualizeGraphViz,
+                                    bool VisualizeUbi,
+                                    bool VizTrimGraph,
+                                    bool AnalyzeAll);
 } // end clang namespace
 
 #endif