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 814e69b171
commit 9b6772c43a
1 changed files with 1 additions and 1 deletions

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