Bug 1240880: IonMonkey: Only do float analysis of filtertypeset with floating point types, r=bbouvier

This commit is contained in:
Hannes Verschore 2016-01-22 09:13:06 -05:00
Родитель 12e1d8f1cf
Коммит 9a08c3cafd
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -12595,7 +12595,10 @@ class MFilterTypeSet
}
void computeRange(TempAllocator& alloc) override;
bool isFloat32Commutative() const override { return true; }
bool isFloat32Commutative() const override {
return IsFloatingPointType(type());
}
bool canProduceFloat32() const override;
bool canConsumeFloat32(MUse* operand) const override;
void trySpecializeFloat32(TempAllocator& alloc) override;