target/arm: Re-indent sdiv and udiv helpers

We're about to make a code change to the sdiv and udiv helper
functions, so first fix their indentation and coding style.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20210730151636.17254-2-peter.maydell@linaro.org
This commit is contained in:
Peter Maydell 2021-07-30 16:16:35 +01:00
parent 075e7e97e3
commit fc7a5038a6

View file

@ -9355,17 +9355,20 @@ uint32_t HELPER(uxtb16)(uint32_t x)
int32_t HELPER(sdiv)(int32_t num, int32_t den) int32_t HELPER(sdiv)(int32_t num, int32_t den)
{ {
if (den == 0) if (den == 0) {
return 0; return 0;
if (num == INT_MIN && den == -1) }
return INT_MIN; if (num == INT_MIN && den == -1) {
return INT_MIN;
}
return num / den; return num / den;
} }
uint32_t HELPER(udiv)(uint32_t num, uint32_t den) uint32_t HELPER(udiv)(uint32_t num, uint32_t den)
{ {
if (den == 0) if (den == 0) {
return 0; return 0;
}
return num / den; return num / den;
} }