Bug 1646045: Add ensureBallast to FoldLoadsWithUnbox r=jandem

Differential Revision: https://phabricator.services.mozilla.com/D79837
This commit is contained in:
Iain Ireland 2020-06-17 09:04:06 +00:00
Родитель e722c196bc
Коммит 74a825ca87
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -4939,6 +4939,9 @@ bool jit::FoldLoadsWithUnbox(MIRGenerator* mir, MIRGraph& graph) {
}
// Combine the load and unbox into a single MIR instruction.
if (!graph.alloc().ensureBallast()) {
return false;
}
MIRType type = unbox->type();
MUnbox::Mode mode = unbox->mode();