Bug 1318926 - constant-fold asm.js RSh expressions again. r=nbp

--HG--
extra : rebase_source : 7ac6438095eafb116ffeaf217d8dc07270bebf58
This commit is contained in:
Pip Cet 2016-11-20 23:16:00 +01:00
Родитель 5a4b0c3da2
Коммит 14b8b0f5fe
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -3112,6 +3112,11 @@ MBinaryArithInstruction::constantDoubleResult(TempAllocator& alloc)
MDefinition*
MRsh::foldsTo(TempAllocator& alloc)
{
MDefinition* f = MBinaryBitwiseInstruction::foldsTo(alloc);
if (f != this)
return f;
MDefinition* lhs = getOperand(0);
MDefinition* rhs = getOperand(1);