diff options
author | sac <sac@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-01-12 16:13:44 +0000 |
---|---|---|
committer | sac <sac@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-01-12 16:13:44 +0000 |
commit | 60a744a6a6ff955779710999c4a55dfb7e5eca70 (patch) | |
tree | 1f2ea5648857b14b8ef31cb0eb7dfa27ac0102b7 /gcc/libgcc2.c | |
parent | 01d330be4cbc84e2209bf3f42dc95d4b38de282f (diff) | |
download | gcc-60a744a6a6ff955779710999c4a55dfb7e5eca70.tar.gz |
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8735 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r-- | gcc/libgcc2.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index c8d58058429..a47bf1adbfb 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -149,10 +149,10 @@ __negdi2 (u) DItype __lshldi3 (u, b) DItype u; - SItype b; + word_type b; { DIunion w; - SItype bm; + word_type bm; DIunion uu; if (b == 0) @@ -181,10 +181,10 @@ __lshldi3 (u, b) DItype __lshrdi3 (u, b) DItype u; - SItype b; + word_type b; { DIunion w; - SItype bm; + word_type bm; DIunion uu; if (b == 0) @@ -213,10 +213,10 @@ __lshrdi3 (u, b) DItype __ashldi3 (u, b) DItype u; - SItype b; + word_type b; { DIunion w; - SItype bm; + word_type bm; DIunion uu; if (b == 0) @@ -245,10 +245,10 @@ __ashldi3 (u, b) DItype __ashrdi3 (u, b) DItype u; - SItype b; + word_type b; { DIunion w; - SItype bm; + word_type bm; DIunion uu; if (b == 0) @@ -654,7 +654,7 @@ DItype __divdi3 (u, v) DItype u, v; { - SItype c = 0; + word_type c = 0; DIunion uu, vv; DItype w; @@ -682,7 +682,7 @@ DItype __moddi3 (u, v) DItype u, v; { - SItype c = 0; + word_type c = 0; DIunion uu, vv; DItype w; |