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:
parent
a9493ad718
commit
f877cd09d0
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user