MFC: r205393

- Remove a bogus forward declaration.
- Fix whitespace.
This commit is contained in:
Marius Strobl 2010-03-30 18:58:07 +00:00
parent 6f1f54906a
commit c3342f6536
2 changed files with 3 additions and 7 deletions

View File

@ -41,7 +41,6 @@
#define _SPARC64_FPU_FPU_EXTERN_H_
struct utrapframe;
union instr;
struct fpemu;
struct fpn;

View File

@ -198,7 +198,6 @@ __fpu_ftoi(fe, fp)
sign = fp->fp_sign;
switch (fp->fp_class) {
case FPC_ZERO:
return (0);
@ -248,7 +247,6 @@ __fpu_ftox(fe, fp, res)
sign = fp->fp_sign;
switch (fp->fp_class) {
case FPC_ZERO:
res[1] = 0;
return (0);
@ -504,7 +502,6 @@ __fpu_implode(fe, fp, type, space)
{
switch (type) {
case FTYPE_LNG:
space[0] = __fpu_ftox(fe, fp, space);
break;