diff options
author | Kyle McMartin <kyle@mako.i.cabal.ca> | 2007-11-28 02:07:35 -0500 |
---|---|---|
committer | Kyle McMartin <kyle@shortfin.cabal.ca> | 2007-12-06 12:16:29 -0500 |
commit | 9d29213fd469c4c409a30b8dbb88c4efcba6e0a6 (patch) | |
tree | 27e8617c6ef5776f6474c1f4422b2f765b96caaf /arch/parisc/lib/libgcc/__lshrdi3.c | |
parent | 09b56adc98e0f8a21644fcb4d20ad367c3fceb55 (diff) |
Revert "[PARISC] import necessary bits of libgcc.a"
This reverts commit efb80e7e097d0888e59fbbe4ded2ac5a256f556d, it turned
out to cause sporadic problems with the timer interrupt on 32-bit kernels.
Needs more investigation.
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'arch/parisc/lib/libgcc/__lshrdi3.c')
-rw-r--r-- | arch/parisc/lib/libgcc/__lshrdi3.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/arch/parisc/lib/libgcc/__lshrdi3.c b/arch/parisc/lib/libgcc/__lshrdi3.c deleted file mode 100644 index 4a820708ec57..000000000000 --- a/arch/parisc/lib/libgcc/__lshrdi3.c +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | #include "libgcc.h" | ||
2 | |||
3 | u64 __lshrdi3(u64 v, int cnt) | ||
4 | { | ||
5 | int c = cnt & 31; | ||
6 | u32 vl = (u32) v; | ||
7 | u32 vh = (u32) (v >> 32); | ||
8 | |||
9 | if (cnt & 32) { | ||
10 | vl = (vh >> c); | ||
11 | vh = 0; | ||
12 | } else { | ||
13 | vl = (vl >> c) + (vh << (32 - c)); | ||
14 | vh = (vh >> c); | ||
15 | } | ||
16 | |||
17 | return ((u64) vh << 32) + vl; | ||
18 | } | ||
19 | EXPORT_SYMBOL(__lshrdi3); | ||