Skip to content

Commit a3ffece

Browse files
committed
fix formatting again
1 parent 5181541 commit a3ffece

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libclc/clc/lib/generic/math/clc_remquo.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ _CLC_DEF _CLC_OVERLOAD double __clc_remquo(double x, double y,
218218
quo = c ? 0 : quo;
219219
ret = c ? x : ret;
220220

221-
c &= (yexp<1023 & 2.0 * dx> dy) | (dx > 0.5 * dy);
221+
c &= (yexp < 1023 & 2.0 * dx > dy) | (dx > 0.5 * dy);
222222
quo = c ? qsgn : quo;
223223
// we could use a conversion here instead since qsgn = +-1
224224
p = qsgn == 1 ? -1.0 : 1.0;

0 commit comments

Comments
 (0)