Fix #2091, remove incorrect assert for division by 0.0.

This commit is contained in:
John Kessenich 2020-02-28 04:09:29 -07:00
parent 70ba66cdbc
commit 82da15f4f0

View File

@ -1079,7 +1079,6 @@ TIntermTyped* TIntermediate::fold(TIntermAggregate* aggrNode)
{ {
double arg0 = childConstUnions[0][arg0comp].getDConst(); double arg0 = childConstUnions[0][arg0comp].getDConst();
double arg1 = childConstUnions[1][arg1comp].getDConst(); double arg1 = childConstUnions[1][arg1comp].getDConst();
assert(arg1 != 0.0);
double result = arg0 - arg1 * floor(arg0 / arg1); double result = arg0 - arg1 * floor(arg0 / arg1);
newConstArray[comp].setDConst(result); newConstArray[comp].setDConst(result);
break; break;