Commit 1156b23c by Richard Kenner

Minor whitespace fixes

From-SVN: r35729
parent 7300c8eb
...@@ -937,7 +937,7 @@ gen_lowpart_common (mode, x) ...@@ -937,7 +937,7 @@ gen_lowpart_common (mode, x)
{ {
case SFmode: case SFmode:
REAL_VALUE_TO_TARGET_SINGLE (r, i[endian]); REAL_VALUE_TO_TARGET_SINGLE (r, i[endian]);
i[1-endian] = 0; i[1 - endian] = 0;
break; break;
case DFmode: case DFmode:
REAL_VALUE_TO_TARGET_DOUBLE (r, i); REAL_VALUE_TO_TARGET_DOUBLE (r, i);
...@@ -950,26 +950,28 @@ gen_lowpart_common (mode, x) ...@@ -950,26 +950,28 @@ gen_lowpart_common (mode, x)
REAL_VALUE_TO_TARGET_LONG_DOUBLE (r, i); REAL_VALUE_TO_TARGET_LONG_DOUBLE (r, i);
break; break;
default: default:
abort(); abort ();
} }
/* Now, pack the 32-bit elements of the array into a CONST_DOUBLE /* Now, pack the 32-bit elements of the array into a CONST_DOUBLE
and return it. */ and return it. */
#if HOST_BITS_PER_WIDE_INT == 32 #if HOST_BITS_PER_WIDE_INT == 32
return immed_double_const (i[endian], i[1-endian], mode); return immed_double_const (i[endian], i[1 - endian], mode);
#else #else
{ {
int c; int c;
if (HOST_BITS_PER_WIDE_INT != 64) if (HOST_BITS_PER_WIDE_INT != 64)
abort(); abort ();
for (c = 0; c < 4; c++) for (c = 0; c < 4; c++)
i[c] &= 0xffffffffL; i[c] &= ~ (0L);
return immed_double_const (i[endian*3] | return immed_double_const (i[endian * 3]
(((HOST_WIDE_INT) i[1+endian]) << 32), | (((HOST_WIDE_INT) i[1 + endian]) << 32),
i[2-endian] | i[2 - endian]
(((HOST_WIDE_INT) i[3-endian*3]) << 32), | (((HOST_WIDE_INT) i[3 - endian * 3])
<< 32),
mode); mode);
} }
#endif #endif
......
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