- Remove a bogus forward declaration.
- Fix whitespace.
This commit is contained in:
parent
7ef5a84218
commit
8842ef0888
@ -34,7 +34,6 @@
|
||||
#define _SPARC64_FPU_FPU_EXTERN_H_
|
||||
|
||||
struct utrapframe;
|
||||
union instr;
|
||||
struct fpemu;
|
||||
struct fpn;
|
||||
|
||||
@ -54,9 +53,9 @@ struct fpn *__fpu_div(struct fpemu *);
|
||||
int __fpu_itof(struct fpn *, u_int);
|
||||
int __fpu_xtof(struct fpn *, u_int64_t);
|
||||
int __fpu_stof(struct fpn *, u_int);
|
||||
int __fpu_dtof(struct fpn *, u_int, u_int );
|
||||
int __fpu_qtof(struct fpn *, u_int, u_int , u_int , u_int );
|
||||
void __fpu_explode(struct fpemu *, struct fpn *, int, int );
|
||||
int __fpu_dtof(struct fpn *, u_int, u_int);
|
||||
int __fpu_qtof(struct fpn *, u_int, u_int, u_int, u_int);
|
||||
void __fpu_explode(struct fpemu *, struct fpn *, int, int);
|
||||
|
||||
/* fpu_implode.c */
|
||||
u_int __fpu_ftoi(struct fpemu *, struct fpn *);
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user