From 3d76f312b25537e3f9b01734e01c52a496712a4d Mon Sep 17 00:00:00 2001 From: Joerg Sonnenberger Date: Wed, 7 Sep 2011 02:12:03 +0000 Subject: Dependency should be on the output file name, not the dependency file name. llvm-svn: 139220 --- llvm/utils/TableGen/TableGen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/utils/TableGen/TableGen.cpp') diff --git a/llvm/utils/TableGen/TableGen.cpp b/llvm/utils/TableGen/TableGen.cpp index e8eacb8..372c40b 100644 --- a/llvm/utils/TableGen/TableGen.cpp +++ b/llvm/utils/TableGen/TableGen.cpp @@ -242,7 +242,7 @@ int main(int argc, char **argv) { << ":" << Error << "\n"; return 1; } - DepOut.os() << DependFilename << ":"; + DepOut.os() << OutputFilename << ":"; const std::vector &Dependencies = Parser.getDependencies(); for (std::vector::const_iterator I = Dependencies.begin(), E = Dependencies.end(); -- cgit v1.1