Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 96299
b: refs/heads/master
c: 9731e28
h: refs/heads/master
i:
  96297: c5f6d3b
  96295: 328e2f0
v: v3
  • Loading branch information
Roel Kluin authored and Paul Mundt committed May 9, 2008
1 parent 8c813a1 commit c690cba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cdf7da899d840d47e075ff3bd761290653c68b77
refs/heads/master: 9731e287e08b804592191d8bffaad023154af2aa
4 changes: 2 additions & 2 deletions trunk/arch/sh/kernel/cpu/sh2a/fpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ static int denormal_addf(int hx, int hy)
iy = hy & 0x7fffffff;
if (iy < 0x00800000) {
ix = denormal_subf1(ix, iy);
if (ix < 0) {
if ((int) ix < 0) {
ix = -ix;
sign ^= 0x80000000;
}
Expand Down Expand Up @@ -385,7 +385,7 @@ static long long denormal_addd(long long hx, long long hy)
iy = hy & 0x7fffffffffffffffLL;
if (iy < 0x0010000000000000LL) {
ix = denormal_subd1(ix, iy);
if (ix < 0) {
if ((int) ix < 0) {
ix = -ix;
sign ^= 0x8000000000000000LL;
}
Expand Down

0 comments on commit c690cba

Please sign in to comment.