diff options
Diffstat (limited to 'arch/mips/math-emu/sp_maddf.c')
| -rw-r--r-- | arch/mips/math-emu/sp_maddf.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/arch/mips/math-emu/sp_maddf.c b/arch/mips/math-emu/sp_maddf.c index f823338dbb65..07ba675401e2 100644 --- a/arch/mips/math-emu/sp_maddf.c +++ b/arch/mips/math-emu/sp_maddf.c @@ -126,6 +126,7 @@ static union ieee754sp _sp_maddf(union ieee754sp z, union ieee754sp x,  	case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM):  		SPDNORMX; +		/* fall through */  	case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_DNORM):  		if (zc == IEEE754_CLASS_INF) @@ -142,7 +143,7 @@ static union ieee754sp _sp_maddf(union ieee754sp z, union ieee754sp x,  	case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_NORM):  		if (zc == IEEE754_CLASS_INF)  			return ieee754sp_inf(zs); -		/* fall through to real computations */ +		/* continue to real computations */  	}  	/* Finally get to do some computation */ |