Skip to content
This repository has been archived by the owner on Apr 3, 2020. It is now read-only.

Commit

Permalink
Merged: Fix compilation error on gcc 4.8.5 on s390x
Browse files Browse the repository at this point in the history
Revision: d8792ab

NOTRY=true
NOPRESUBMIT=true
NOTREECHECKS=true
[email protected], [email protected]
BUG=

Review-Url: https://codereview.chromium.org/2302003002
Cr-Commit-Position: refs/branch-heads/5.3@{#55}
Cr-Branched-From: 820a23a-refs/heads/5.3.332@{#2}
Cr-Branched-From: 37538cb-refs/heads/master@{#37308}
  • Loading branch information
jyan authored and Commit bot committed Sep 1, 2016
1 parent c668dfb commit 5f467b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base/ieee754.cc
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ int __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec,
j = 0;
for (i = jz - 1; i >= jk; i--) j |= iq[i];
if (j == 0) { /* need recomputation */
for (k = 1; iq[jk - k] == 0; k++) {
for (k = 1; jk >= k && iq[jk - k] == 0; k++) {
/* k = no. of terms needed */
}

Expand Down

0 comments on commit 5f467b7

Please sign in to comment.