Define the folding rules for subtraction, addition, multiplication, and division for floating point values.
| 987 | // Define the folding rules for subtraction, addition, multiplication, and |
| 988 | // division for floating point values. |
| 989 | ConstantFoldingRule FoldFSub() { return FoldFPBinaryOp(FOLD_FPARITH_OP(-)); } |
| 990 | ConstantFoldingRule FoldFAdd() { return FoldFPBinaryOp(FOLD_FPARITH_OP(+)); } |
| 991 | ConstantFoldingRule FoldFMul() { return FoldFPBinaryOp(FOLD_FPARITH_OP(*)); } |
| 992 |
no test coverage detected