forked from OSchip/llvm-project
Quick fix for build errors caused by undefined
NULL. llvm-svn: 101180
This commit is contained in:
parent
814e69b171
commit
9b6772c43a
|
@ -52,7 +52,7 @@ public:
|
|||
/// @return - An array of instruction information, with one entry for
|
||||
/// each MCInst opcode this disassembler returns.
|
||||
/// NULL if there is no info for this target.
|
||||
virtual EDInstInfo *getEDInfo() const { return NULL; }
|
||||
virtual EDInstInfo *getEDInfo() const { return (EDInstInfo*)0; }
|
||||
};
|
||||
|
||||
} // namespace llvm
|
||||
|
|
Loading…
Reference in New Issue