summaryrefslogtreecommitdiff
path: root/tools/bugpoint/BugDriver.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-13 03:01:03 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-13 03:01:03 +0000
commite4874029c37c4b14d0646289f18e5f2a1b03fdc2 (patch)
tree3411351d35611ceddd41e206966549436e589360 /tools/bugpoint/BugDriver.cpp
parent1b6b99bffc80712f9da81e25a070d5e260b8b7f5 (diff)
downloadllvm-e4874029c37c4b14d0646289f18e5f2a1b03fdc2.tar.gz
llvm-e4874029c37c4b14d0646289f18e5f2a1b03fdc2.tar.bz2
llvm-e4874029c37c4b14d0646289f18e5f2a1b03fdc2.tar.xz
LinkModules is now in the Linker class
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18863 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/BugDriver.cpp')
-rw-r--r--tools/bugpoint/BugDriver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/BugDriver.cpp b/tools/bugpoint/BugDriver.cpp
index 3a88bbb12e..4b6db0c085 100644
--- a/tools/bugpoint/BugDriver.cpp
+++ b/tools/bugpoint/BugDriver.cpp
@@ -105,7 +105,7 @@ bool BugDriver::addSources(const std::vector<std::string> &Filenames) {
std::cout << "Linking in input file: '" << Filenames[i] << "'\n";
std::string ErrorMessage;
- if (LinkModules(Program, M.get(), &ErrorMessage)) {
+ if (Linker::LinkModules(Program, M.get(), &ErrorMessage)) {
std::cerr << ToolName << ": error linking in '" << Filenames[i] << "': "
<< ErrorMessage << '\n';
return true;