From: Joerg Sonnenberger Date: Wed, 7 Sep 2011 02:12:03 +0000 (+0000) Subject: Dependency should be on the output file name, not the dependency file X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=08708c8ef3185058ef879a977f580996b83b75ea;p=oota-llvm.git Dependency should be on the output file name, not the dependency file name. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139220 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/TableGen.cpp b/utils/TableGen/TableGen.cpp index e8eacb841d0..372c40b1a0c 100644 --- a/utils/TableGen/TableGen.cpp +++ b/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();