The CBE is no longer in llvm-dis

llvm-svn: 11532
This commit is contained in:
Chris Lattner 2004-02-17 06:39:48 +00:00
parent ca8f1c2716
commit 9093e9b2a1
1 changed files with 2 additions and 2 deletions

View File

@ -95,10 +95,10 @@ struct AbstractInterpreter {
// CBE Implementation of AbstractIntepreter interface
//
class CBE : public AbstractInterpreter {
std::string DISPath; // The path to the `llvm-dis' executable
std::string LLCPath; // The path to the `llc' executable
GCC *gcc;
public:
CBE(const std::string &disPath, GCC *Gcc) : DISPath(disPath), gcc(Gcc) { }
CBE(const std::string &llcPath, GCC *Gcc) : LLCPath(llcPath), gcc(Gcc) { }
~CBE() { delete gcc; }
virtual int ExecuteProgram(const std::string &Bytecode,