Bug 863521 - Remove legacy verifier nursery and store buffer from the Zone; r=billm

--HG--
extra : rebase_source : 4418bf1acf0badb99a92a976cee5c36df94c587a
This commit is contained in:
Terrence Cole 2013-04-18 18:51:25 -07:00
parent 61784a7a3a
commit 1cba4e738b
2 changed files with 0 additions and 9 deletions

View File

@ -28,10 +28,6 @@ JS::Zone::Zone(JSRuntime *rt)
: rt(rt), : rt(rt),
allocator(this), allocator(this),
hold(false), hold(false),
#ifdef JSGC_GENERATIONAL
gcNursery(),
gcStoreBuffer(rt),
#endif
ionUsingBarriers_(false), ionUsingBarriers_(false),
active(false), active(false),
gcScheduled(false), gcScheduled(false),

View File

@ -111,11 +111,6 @@ struct Zone : private JS::shadow::Zone, public js::gc::GraphNodeBase<JS::Zone>
bool hold; bool hold;
#ifdef JSGC_GENERATIONAL
js::gc::VerifierNursery gcNursery;
js::gc::StoreBuffer gcStoreBuffer;
#endif
private: private:
bool ionUsingBarriers_; bool ionUsingBarriers_;
public: public: