aboutsummaryrefslogtreecommitdiff
path: root/gcc/libgcc2.c
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@gnu.org>1995-01-12 16:13:44 +0000
committerSteve Chamberlain <sac@gnu.org>1995-01-12 16:13:44 +0000
commitb799cfc33b5fe8944a26f27053fa7ea6ad889a8e (patch)
tree1f2ea5648857b14b8ef31cb0eb7dfa27ac0102b7 /gcc/libgcc2.c
parent82e974d406df50ed795223e0dc5308c0c9ed7744 (diff)
downloadgcc-b799cfc33b5fe8944a26f27053fa7ea6ad889a8e.zip
gcc-b799cfc33b5fe8944a26f27053fa7ea6ad889a8e.tar.gz
gcc-b799cfc33b5fe8944a26f27053fa7ea6ad889a8e.tar.bz2
*** empty log message ***
From-SVN: r8735
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r--gcc/libgcc2.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c
index c8d5805..a47bf1a 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;