Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 11222
b: refs/heads/master
c: 587cb98
h: refs/heads/master
v: v3
  • Loading branch information
Ralf Baechle committed Oct 29, 2005
1 parent 0f0b539 commit 4cf1d4b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 61ed7f08b691677a13486d920dcd931b7d31719c
refs/heads/master: 587cb98f368de7ea4382a6ca99847113fbbeea91
12 changes: 6 additions & 6 deletions trunk/arch/mips/math-emu/cp1emu.c
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ static int cop1Emulate(struct pt_regs *xcp, struct mips_fpu_soft_struct *ctx)
switch (MIPSInst_OPCODE(ir)) {
case lwc1_op:
case swc1_op:
#if (__mips >= 2 || __mips64) && !defined(SINGLE_ONLY_FPU)
#if (__mips >= 2 || defined(__mips64)) && !defined(SINGLE_ONLY_FPU)
case ldc1_op:
case sdc1_op:
#endif
Expand Down Expand Up @@ -842,7 +842,7 @@ static int fpu_emu(struct pt_regs *xcp, struct mips_fpu_soft_struct *ctx,
goto scopbop;

/* unary ops */
#if __mips >= 2 || __mips64
#if __mips >= 2 || defined(__mips64)
case fsqrt_op:
handler.u = ieee754sp_sqrt;
goto scopuop;
Expand Down Expand Up @@ -941,7 +941,7 @@ static int fpu_emu(struct pt_regs *xcp, struct mips_fpu_soft_struct *ctx,
goto copcsr;
}

#if __mips >= 2 || __mips64
#if __mips >= 2 || defined(__mips64)
case fround_op:
case ftrunc_op:
case fceil_op:
Expand Down Expand Up @@ -982,7 +982,7 @@ static int fpu_emu(struct pt_regs *xcp, struct mips_fpu_soft_struct *ctx,
rfmt = l_fmt;
goto copcsr;
}
#endif /* __mips64 && !fpu(single) */
#endif /* defined(__mips64) && !fpu(single) */

default:
if (MIPSInst_FUNC(ir) >= fcmp_op) {
Expand Down Expand Up @@ -1032,7 +1032,7 @@ static int fpu_emu(struct pt_regs *xcp, struct mips_fpu_soft_struct *ctx,
goto dcopbop;

/* unary ops */
#if __mips >= 2 || __mips64
#if __mips >= 2 || defined(__mips64)
case fsqrt_op:
handler.u = ieee754dp_sqrt;
goto dcopuop;
Expand Down Expand Up @@ -1116,7 +1116,7 @@ static int fpu_emu(struct pt_regs *xcp, struct mips_fpu_soft_struct *ctx,
goto copcsr;
}

#if __mips >= 2 || __mips64
#if __mips >= 2 || defined(__mips64)
case fround_op:
case ftrunc_op:
case fceil_op:
Expand Down

0 comments on commit 4cf1d4b

Please sign in to comment.