arm: fix a warning

This commit is contained in:
Nguyen Anh Quynh 2017-02-23 20:32:09 +08:00
parent f3f2a4d7a9
commit 714cf2c609
1 changed files with 2 additions and 0 deletions

View File

@ -5661,6 +5661,8 @@ static bool round_to_inf(float_status *fpst, bool sign_bit)
return sign_bit;
case float_round_to_zero: /* Round to Zero */
return false;
default:
break;
}
g_assert_not_reached();