forked from OSchip/llvm-project
In the future, these slabs can be null...
llvm-svn: 10083
This commit is contained in:
parent
11e8f1b595
commit
bf346b526f
|
@ -326,7 +326,8 @@ void BytecodeParser::ParseConstantPool(const unsigned char *&Buf,
|
||||||
// If we are reading a function constant table, make sure that we adjust
|
// If we are reading a function constant table, make sure that we adjust
|
||||||
// the slot number to be the real global constant number.
|
// the slot number to be the real global constant number.
|
||||||
//
|
//
|
||||||
if (&Tab != &ModuleValues && Typ < ModuleValues.size())
|
if (&Tab != &ModuleValues && Typ < ModuleValues.size() &&
|
||||||
|
ModuleValues[Typ])
|
||||||
Slot += ModuleValues[Typ]->size();
|
Slot += ModuleValues[Typ]->size();
|
||||||
ResolveReferencesToConstant(C, Slot);
|
ResolveReferencesToConstant(C, Slot);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue