Index: src/IceGlobalContext.cpp |
diff --git a/src/IceGlobalContext.cpp b/src/IceGlobalContext.cpp |
index 349db7cc4ff4bb7db75c5233ce3d3ec1f318a91b..5ece81b31d950e123a53400c5f15aaec89e17f10 100644 |
--- a/src/IceGlobalContext.cpp |
+++ b/src/IceGlobalContext.cpp |
@@ -298,9 +298,9 @@ static constexpr size_t DefaultOptQWakeupSize = GlobalContext::MaxOptQSize >> 1; |
GlobalContext::GlobalContext(Ostream *OsDump, Ostream *OsEmit, Ostream *OsError, |
ELFStreamer *ELFStr) |
- : Strings(new StringPool()), ConstPool(new ConstantPool()), ErrorStatus(), |
- StrDump(OsDump), StrEmit(OsEmit), StrError(OsError), IntrinsicsInfo(this), |
- ObjectWriter(), |
+ : GlobalsReceived(false), Strings(new StringPool()), |
+ ConstPool(new ConstantPool()), ErrorStatus(), StrDump(OsDump), |
+ StrEmit(OsEmit), StrError(OsError), IntrinsicsInfo(this), ObjectWriter(), |
OptQWakeupSize(std::max(DefaultOptQWakeupSize, |
size_t(getFlags().getNumTranslationThreads()))), |
OptQ(/*Sequential=*/getFlags().isSequential(), |