summaryrefslogtreecommitdiff
path: root/tools/bugpoint/BugDriver.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-14 21:09:11 +0000
committerChris Lattner <sabre@nondot.org>2003-10-14 21:09:11 +0000
commita0f5b15e1eb8642d92b3141a6b88a5729ea979dc (patch)
treeb0656b9b29ae1e9d9460150a407bc79d5bec257d /tools/bugpoint/BugDriver.h
parent1798e4ade88c1fccfc290846f588c1d1261a5299 (diff)
downloadllvm-a0f5b15e1eb8642d92b3141a6b88a5729ea979dc.tar.gz
llvm-a0f5b15e1eb8642d92b3141a6b88a5729ea979dc.tar.bz2
llvm-a0f5b15e1eb8642d92b3141a6b88a5729ea979dc.tar.xz
The return value of compileSharedObject was never used. Return the shared
object's name instead git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9120 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/BugDriver.h')
-rw-r--r--tools/bugpoint/BugDriver.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bugpoint/BugDriver.h b/tools/bugpoint/BugDriver.h
index eff11ec0de..2b43aae584 100644
--- a/tools/bugpoint/BugDriver.h
+++ b/tools/bugpoint/BugDriver.h
@@ -85,8 +85,8 @@ public:
/// compileSharedObject - This method creates a SharedObject from a given
/// BytecodeFile for debugging a code generator.
- int compileSharedObject(const std::string &BytecodeFile,
- std::string &SharedObject);
+ ///
+ std::string compileSharedObject(const std::string &BytecodeFile);
/// debugCodeGenerator - This method narrows down a module to a function or
/// set of functions, using the CBE as a ``safe'' code generator for other