Skip to content

Commit 29b003f

Browse files
committed
Minor fix
1 parent 01fc86a commit 29b003f

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/BinOp.chpl

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,6 @@ module BinOp
114114
}
115115

116116

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) {
124117
inline proc floorDivisionHelper(dividend : ?tn, divisor : ?td) : floorDivisionType(tn,td) {
125118
type fDT = floorDivisionType(tn,td);
126119
var numerator = dividend : fDT;

0 commit comments

Comments
 (0)