drm/amd/display: fix overflow on MIN_I64 definition
authorDavid Gow <davidgow@google.com>
Thu, 11 Aug 2022 20:43:26 +0000 (17:43 -0300)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 16 Aug 2022 22:17:31 +0000 (18:17 -0400)
The definition of MIN_I64 in bw_fixed.c can cause gcc to whinge about
integer overflow, because it is treated as a positive value, which is
then negated. The temporary positive value is not necessarily
representable.

This causes the following warning:
../drivers/gpu/drm/amd/amdgpu/../display/dc/dml/calcs/bw_fixed.c:30:19:
warning: integer overflow in expression ‘-9223372036854775808’ of type
‘long long int’ results in ‘-9223372036854775808’ [-Woverflow]
  30 |         (int64_t)(-(1LL << 63))
     |                   ^

Writing out (-MAX_I64 - 1) works instead.

Signed-off-by: David Gow <davidgow@google.com>
Signed-off-by: Tales Aparecida <tales.aparecida@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dml/calcs/bw_fixed.c

index 6ca288f..2d46bc5 100644 (file)
 #include "bw_fixed.h"
 
 
-#define MIN_I64 \
-       (int64_t)(-(1LL << 63))
-
 #define MAX_I64 \
        (int64_t)((1ULL << 63) - 1)
 
+#define MIN_I64 \
+       (-MAX_I64 - 1)
+
 #define FRACTIONAL_PART_MASK \
        ((1ULL << BW_FIXED_BITS_PER_FRACTIONAL_PART) - 1)