mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 22:01:56 +00:00
An MCDisassembler has the option to not implement
getEDInfo(), in which case this code would dereference NULL. EDInst can already handle NULL info, so avoid the dereference and pass NULL through. Reviewed by Sean Callanan git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128904 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
215e4fdbf9
commit
0da9f13faa
@ -254,9 +254,11 @@ EDInst *EDDisassembler::createInst(EDByteReaderCallback byteReader,
|
||||
delete inst;
|
||||
return NULL;
|
||||
} else {
|
||||
const llvm::EDInstInfo *thisInstInfo;
|
||||
const llvm::EDInstInfo *thisInstInfo = NULL;
|
||||
|
||||
thisInstInfo = &InstInfos[inst->getOpcode()];
|
||||
if (InstInfos) {
|
||||
thisInstInfo = &InstInfos[inst->getOpcode()];
|
||||
}
|
||||
|
||||
EDInst* sdInst = new EDInst(inst, byteSize, *this, thisInstInfo);
|
||||
return sdInst;
|
||||
|
Loading…
x
Reference in New Issue
Block a user