While you could pass a 0 size_words to the function it would be a bug. At least by ensuring the leg is followed it stops the compiler complaining about a potential uninitialised access.
Signed-off-by: Alex Bennée <alex.ben...@linaro.org> --- fpu/softfloat3c/s_shiftRightJamM.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fpu/softfloat3c/s_shiftRightJamM.c b/fpu/softfloat3c/s_shiftRightJamM.c index 47ba5ddaf9..035d5d3c1f 100644 --- a/fpu/softfloat3c/s_shiftRightJamM.c +++ b/fpu/softfloat3c/s_shiftRightJamM.c @@ -66,7 +66,7 @@ void } while ( i ); ptr = zPtr; } - if ( wordDist < size_words ) { + if ( wordDist <= size_words ) { aPtr += indexMultiwordHiBut( size_words, wordDist ); innerDist = dist & 31; if ( innerDist ) { -- 2.13.0