Commit b799cfc3 by Steve Chamberlain

*** empty log message ***

From-SVN: r8735
parent 82e974d4
...@@ -149,10 +149,10 @@ __negdi2 (u) ...@@ -149,10 +149,10 @@ __negdi2 (u)
DItype DItype
__lshldi3 (u, b) __lshldi3 (u, b)
DItype u; DItype u;
SItype b; word_type b;
{ {
DIunion w; DIunion w;
SItype bm; word_type bm;
DIunion uu; DIunion uu;
if (b == 0) if (b == 0)
...@@ -181,10 +181,10 @@ __lshldi3 (u, b) ...@@ -181,10 +181,10 @@ __lshldi3 (u, b)
DItype DItype
__lshrdi3 (u, b) __lshrdi3 (u, b)
DItype u; DItype u;
SItype b; word_type b;
{ {
DIunion w; DIunion w;
SItype bm; word_type bm;
DIunion uu; DIunion uu;
if (b == 0) if (b == 0)
...@@ -213,10 +213,10 @@ __lshrdi3 (u, b) ...@@ -213,10 +213,10 @@ __lshrdi3 (u, b)
DItype DItype
__ashldi3 (u, b) __ashldi3 (u, b)
DItype u; DItype u;
SItype b; word_type b;
{ {
DIunion w; DIunion w;
SItype bm; word_type bm;
DIunion uu; DIunion uu;
if (b == 0) if (b == 0)
...@@ -245,10 +245,10 @@ __ashldi3 (u, b) ...@@ -245,10 +245,10 @@ __ashldi3 (u, b)
DItype DItype
__ashrdi3 (u, b) __ashrdi3 (u, b)
DItype u; DItype u;
SItype b; word_type b;
{ {
DIunion w; DIunion w;
SItype bm; word_type bm;
DIunion uu; DIunion uu;
if (b == 0) if (b == 0)
...@@ -654,7 +654,7 @@ DItype ...@@ -654,7 +654,7 @@ DItype
__divdi3 (u, v) __divdi3 (u, v)
DItype u, v; DItype u, v;
{ {
SItype c = 0; word_type c = 0;
DIunion uu, vv; DIunion uu, vv;
DItype w; DItype w;
...@@ -682,7 +682,7 @@ DItype ...@@ -682,7 +682,7 @@ DItype
__moddi3 (u, v) __moddi3 (u, v)
DItype u, v; DItype u, v;
{ {
SItype c = 0; word_type c = 0;
DIunion uu, vv; DIunion uu, vv;
DItype w; DItype w;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment