aboutsummaryrefslogtreecommitdiff
path: root/lib/Frontend/CompilerInstance.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2012-02-02 23:45:13 +0000
committerDouglas Gregor <dgregor@apple.com>2012-02-02 23:45:13 +0000
commit773303a505c23d73da624f1e6abcf41a393dad2b (patch)
treeb3788aed437fdc182d931074816edecebde7068e /lib/Frontend/CompilerInstance.cpp
parentd2cce136878badcee6694b216479d7f1b72a1e68 (diff)
Rename -dependency-graphviz to -dependencncy-dot
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@149645 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CompilerInstance.cpp')
-rw-r--r--lib/Frontend/CompilerInstance.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Frontend/CompilerInstance.cpp b/lib/Frontend/CompilerInstance.cpp
index 97dc708cc4..03dc626170 100644
--- a/lib/Frontend/CompilerInstance.cpp
+++ b/lib/Frontend/CompilerInstance.cpp
@@ -275,8 +275,8 @@ void CompilerInstance::createPreprocessor() {
const DependencyOutputOptions &DepOpts = getDependencyOutputOpts();
if (!DepOpts.OutputFile.empty())
AttachDependencyFileGen(*PP, DepOpts);
- if (!DepOpts.GraphvizOutputFile.empty())
- AttachDependencyGraphGen(*PP, DepOpts.GraphvizOutputFile,
+ if (!DepOpts.DOTOutputFile.empty())
+ AttachDependencyGraphGen(*PP, DepOpts.DOTOutputFile,
getHeaderSearchOpts().Sysroot);