mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-25 21:16:19 +00:00
Quick fix for build errors caused by undefined
NULL. llvm-svn: 101180
This commit is contained in:
parent
29a7152676
commit
b76f351c0b
@ -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
Block a user