forked from OSchip/llvm-project
Move MipsDisassembler classes into an anonymous namespace.
llvm-svn: 155915
This commit is contained in:
parent
556ab5ee90
commit
cb3e98cf44
|
@ -29,6 +29,8 @@ using namespace llvm;
|
|||
|
||||
typedef MCDisassembler::DecodeStatus DecodeStatus;
|
||||
|
||||
namespace {
|
||||
|
||||
/// MipsDisassembler - a disasembler class for Mips32.
|
||||
class MipsDisassembler : public MCDisassembler {
|
||||
public:
|
||||
|
@ -84,6 +86,8 @@ private:
|
|||
bool isBigEndian;
|
||||
};
|
||||
|
||||
} // end anonymous namespace
|
||||
|
||||
const EDInstInfo *MipsDisassembler::getEDInfo() const {
|
||||
return instInfoMips;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue