Quick fix for build errors caused by undefined

NULL.

llvm-svn: 101180
This commit is contained in:
Sean Callanan 2010-04-13 21:36:35 +00:00
parent 29a7152676
commit b76f351c0b

View File

@ -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