Bug 1244252 - Don't check object group generation when generating code to create unboxed objects off thread, r=terrence.

This commit is contained in:
Brian Hackett 2016-02-29 11:59:14 -07:00
Родитель df3860a8b7
Коммит f44ea00749
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1173,7 +1173,7 @@ MacroAssembler::initGCThing(Register obj, Register temp, JSObject* templateObj,
void
MacroAssembler::initUnboxedObjectContents(Register object, UnboxedPlainObject* templateObject)
{
const UnboxedLayout& layout = templateObject->layout();
const UnboxedLayout& layout = templateObject->layoutDontCheckGeneration();
// Initialize reference fields of the object, per UnboxedPlainObject::create.
if (const int32_t* list = layout.traceList()) {