summaryrefslogtreecommitdiff
path: root/lib/lshrti3.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lshrti3.c')
-rw-r--r--lib/lshrti3.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/lshrti3.c b/lib/lshrti3.c
index a2846875d..3272c9ca8 100644
--- a/lib/lshrti3.c
+++ b/lib/lshrti3.c
@@ -29,17 +29,17 @@ __lshrti3(ti_int a, si_int b)
input.all = a;
if (b & bits_in_dword) /* bits_in_dword <= b < bits_in_tword */
{
- result.high = 0;
- result.low = input.high >> (b - bits_in_dword);
+ result.s.high = 0;
+ result.s.low = input.s.high >> (b - bits_in_dword);
}
else /* 0 <= b < bits_in_dword */
{
if (b == 0)
return a;
- result.high = input.high >> b;
- result.low = (input.high << (bits_in_dword - b)) | (input.low >> b);
+ result.s.high = input.s.high >> b;
+ result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
}
return result.all;
}
-#endif
+#endif /* __x86_64 */