forked from OSchip/llvm-project
Fix PR12080 by ensuring that MaterializeModule actually reads all the bitcode
in the streaming case. llvm-svn: 151676
This commit is contained in:
parent
e646239e5e
commit
92ef975cc5
|
@ -2789,6 +2789,12 @@ bool BitcodeReader::MaterializeModule(Module *M, std::string *ErrInfo) {
|
|||
Materialize(F, ErrInfo))
|
||||
return true;
|
||||
|
||||
// At this point, if there are any function bodies, the current bit is
|
||||
// pointing to the END_BLOCK record after them. Now make sure the rest
|
||||
// of the bits in the module have been read.
|
||||
if (NextUnreadBit)
|
||||
ParseModule(true);
|
||||
|
||||
// Upgrade any intrinsic calls that slipped through (should not happen!) and
|
||||
// delete the old functions to clean up. We can't do this unless the entire
|
||||
// module is materialized because there could always be another function body
|
||||
|
|
|
@ -182,13 +182,15 @@ class BitcodeReader : public GVMaterializer {
|
|||
public:
|
||||
explicit BitcodeReader(MemoryBuffer *buffer, LLVMContext &C)
|
||||
: Context(C), TheModule(0), Buffer(buffer), BufferOwned(false),
|
||||
LazyStreamer(0), SeenValueSymbolTable(false), ErrorString(0),
|
||||
ValueList(C), MDValueList(C), SeenFirstFunctionBody(false) {
|
||||
LazyStreamer(0), NextUnreadBit(0), SeenValueSymbolTable(false),
|
||||
ErrorString(0), ValueList(C), MDValueList(C),
|
||||
SeenFirstFunctionBody(false) {
|
||||
}
|
||||
explicit BitcodeReader(DataStreamer *streamer, LLVMContext &C)
|
||||
: Context(C), TheModule(0), Buffer(0), BufferOwned(false),
|
||||
LazyStreamer(streamer), SeenValueSymbolTable(false), ErrorString(0),
|
||||
ValueList(C), MDValueList(C), SeenFirstFunctionBody(false) {
|
||||
LazyStreamer(streamer), NextUnreadBit(0), SeenValueSymbolTable(false),
|
||||
ErrorString(0), ValueList(C), MDValueList(C),
|
||||
SeenFirstFunctionBody(false) {
|
||||
}
|
||||
~BitcodeReader() {
|
||||
FreeState();
|
||||
|
|
Loading…
Reference in New Issue