Lines Matching refs:Op2C
1142 ConstantFP *Op2C = dyn_cast<ConstantFP>(Op2);
1143 if (Op2C == 0) return Ret;
1145 if (Op2C->getValueAPF().isZero()) // pow(x, 0.0) -> 1.0
1148 if (Op2C->isExactlyValue(0.5)) {
1165 if (Op2C->isExactlyValue(1.0)) // pow(x, 1.0) -> x
1167 if (Op2C->isExactlyValue(2.0)) // pow(x, 2.0) -> x*x
1169 if (Op2C->isExactlyValue(-1.0)) // pow(x, -1.0) -> 1.0/x