1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

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 a9493ad718
commit f877cd09d0

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,