From b799cfc33b5fe8944a26f27053fa7ea6ad889a8e Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Thu, 12 Jan 1995 16:13:44 +0000 Subject: [PATCH] *** empty log message *** From-SVN: r8735 --- gcc/libgcc2.c | 20 ++++++++++---------- 1 file 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;