Bug 1368855 - Baldr: remove dead TlsData::globalData field (r=lth)

This commit is contained in:
Luke Wagner 2017-05-30 16:38:07 -07:00
parent 8ec2f3d436
commit 7e3dbfd756
2 changed files with 0 additions and 4 deletions

View File

@ -347,7 +347,6 @@ Instance::Instance(JSContext* cx,
#ifndef WASM_HUGE_MEMORY
tlsData()->boundsCheckLimit = memory ? memory->buffer().wasmBoundsCheckLimit() : 0;
#endif
tlsData()->globalData = globals_->globalData();
tlsData()->instance = this;
tlsData()->addressOfContext = (JSContext**)object->zone()->group()->addressOfOwnerContext();

View File

@ -1295,9 +1295,6 @@ struct TlsData
uint32_t boundsCheckLimit;
#endif
// Pointer to the global data for this Instance.
uint8_t* globalData;
// Pointer to the Instance that contains this TLS data.
Instance* instance;