summaryrefslogtreecommitdiff
path: root/tools/bugpoint/ToolRunner.h
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2008-04-28 20:53:48 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2008-04-28 20:53:48 +0000
commit9ef7425a4d44ff129495da2357c98c67162fbeff (patch)
tree724b2bde81a9b0ca7ef94bc4e8931af9868be6c3 /tools/bugpoint/ToolRunner.h
parent3e2dda63d03b84e558c757fae67ee8fe028b9124 (diff)
Add possibility of using arbitrary to to execute stuff from bugpoint.
Patch by Pekka Jääskeläinen! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50373 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/ToolRunner.h')
-rw-r--r--tools/bugpoint/ToolRunner.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/bugpoint/ToolRunner.h b/tools/bugpoint/ToolRunner.h
index 020234ecac7..0cc5426b083 100644
--- a/tools/bugpoint/ToolRunner.h
+++ b/tools/bugpoint/ToolRunner.h
@@ -98,6 +98,10 @@ public:
std::string &Message,
const std::vector<std::string> *Args=0);
+ static AbstractInterpreter* createCustom(const std::string &ProgramPath,
+ std::string &Message,
+ const std::string &ExecCommandLine);
+
virtual ~AbstractInterpreter() {}