diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2005-01-22 16:30:58 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2005-01-22 16:30:58 +0000 |
commit | 83881957edee0b1cb89428fa1a3b022d7d84ee13 (patch) | |
tree | e0f226d62d7a06f6249b8e81b4b4a1f4ab233797 /tools/bugpoint/ToolRunner.h | |
parent | c690cc046555c3fbb5d07fde19233f29f8d71dcd (diff) | |
download | external_llvm-83881957edee0b1cb89428fa1a3b022d7d84ee13.zip external_llvm-83881957edee0b1cb89428fa1a3b022d7d84ee13.tar.gz external_llvm-83881957edee0b1cb89428fa1a3b022d7d84ee13.tar.bz2 |
Fix VC++ complaint
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19747 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/ToolRunner.h')
-rw-r--r-- | tools/bugpoint/ToolRunner.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/bugpoint/ToolRunner.h b/tools/bugpoint/ToolRunner.h index b5313e9..e44cd65 100644 --- a/tools/bugpoint/ToolRunner.h +++ b/tools/bugpoint/ToolRunner.h @@ -79,7 +79,8 @@ public: /// LLVM bytecode in a variety of ways. This abstract interface hides this /// complexity behind a simple interface. /// -struct AbstractInterpreter { +class AbstractInterpreter { +public: static CBE *createCBE(const std::string &ProgramPath, std::string &Message, const std::vector<std::string> *Args = 0); static LLC *createLLC(const std::string &ProgramPath, std::string &Message, |