Skip to content

Commit 30c5e3c

Browse files
wenju-heCopilot
andauthored
Update libclc/clc/lib/generic/math/clc_remquo.inc
Co-authored-by: Copilot <[email protected]>
1 parent a9f0402 commit 30c5e3c

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
@@ -172,7 +172,7 @@ internal_remquo(float x, float y, float *r, __CLC_ADDRESS_SPACE uint *q) {
172172
}
173173
}
174174
// Final adjust for sign of input
175-
(*q) = ((uint)(0x7FFFFFFFLL & (quo_bit))) * sign;
175+
(*q) = ((uint)(0x7FFFFFFF & (quo_bit))) * sign;
176176
if (signbit_x)
177177
result = -result;
178178
(*r) = (result);

0 commit comments

Comments
 (0)