We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01fc86a commit 29b003fCopy full SHA for 29b003f
src/BinOp.chpl
@@ -114,13 +114,6 @@ module BinOp
114
}
115
116
117
- // I'm rewriting the function below, and hopefully this can be used to cover the rest of the
118
- // cases, and fix bug 5113. First I have to check if I broke anything.
119
-
120
- // Note that "denom == 0" should have been checked already by the calling program, so
121
- // from here, we only return 0 in that case.
122
123
- // inline proc floorDivisionHelper(numerator: real(64), denom: real(64)): real(64) {
124
inline proc floorDivisionHelper(dividend : ?tn, divisor : ?td) : floorDivisionType(tn,td) {
125
type fDT = floorDivisionType(tn,td);
126
var numerator = dividend : fDT;
0 commit comments