From 2e1296594236e38145a01397a4e6094edbefaaab Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Thu, 2 Feb 2012 23:45:13 +0000 Subject: Rename -dependency-graphviz to -dependencncy-dot llvm-svn: 149645 --- clang/lib/Frontend/CompilerInstance.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'clang/lib/Frontend/CompilerInstance.cpp') diff --git a/clang/lib/Frontend/CompilerInstance.cpp b/clang/lib/Frontend/CompilerInstance.cpp index 97dc708..03dc626 100644 --- a/clang/lib/Frontend/CompilerInstance.cpp +++ b/clang/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); -- cgit v1.1