Bug 1640686 - Add MIsObject instruction to the current block. r=iain

This assert is reached via MaybeSetImplicitlyUsed, so before bug 1640107 this problem might not have triggered the test suite at all.

Differential Revision: https://phabricator.services.mozilla.com/D76725
This commit is contained in:
Tom Schuster 2020-05-25 18:07:41 +00:00
Родитель 9c7a29b17e
Коммит 8f79a3bf75
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -1074,6 +1074,7 @@ bool WarpCacheIRTranspiler::emitIsObjectResult(ValOperandId inputId) {
pushResult(constant(BooleanValue(true)));
} else {
auto* isObject = MIsObject::New(alloc(), value);
add(isObject);
pushResult(isObject);
}