Bug 1123064 - Add default case to fix bustage on CLOSED TREE

This commit is contained in:
Hannes Verschore 2015-01-29 10:09:11 +01:00
Родитель 40f1ae292a
Коммит 260f1ea906
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -3065,6 +3065,8 @@ MToInt32::foldsTo(TempAllocator &alloc)
// Only the value within the range of Int32 can be substitued as constant.
if (mozilla::NumberEqualsInt32(val.toNumber(), &ival))
return MConstant::New(alloc, Int32Value(ival));
default:
break;
}
}