Added bugpoint options: -compile-custom and -compile-command=...
[oota-llvm.git] / tools / bugpoint / ToolRunner.h
index c127f9982b6d0f40c13b1d7a4dae1e26c83072c6..cfa8acf6b24043ba74f573e66211e4d7d85b3365 100644 (file)
@@ -103,8 +103,13 @@ public:
   static AbstractInterpreter* createJIT(const char *Argv0, std::string &Message,
                                         const std::vector<std::string> *Args=0);
 
-  static AbstractInterpreter* createCustom(std::string &Message,
-                                           const std::string &ExecCommandLine);
+  static AbstractInterpreter*
+  createCustomCompiler(std::string &Message,
+                       const std::string &CompileCommandLine);
+
+  static AbstractInterpreter*
+  createCustomExecutor(std::string &Message,
+                       const std::string &ExecCommandLine);
 
 
   virtual ~AbstractInterpreter() {}