From fb049742d640aef3aa585d9f51cc82914d9e9835 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Wed, 18 Jul 2018 17:47:54 -0400 Subject: [PATCH] r600: silence the signed overflow warning like radeonsi MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit r600_gpu_load.c: In function ‘r600_gpu_load_thread’: ../../../../src/util/os_time.h:82:7: warning: assuming signed overflow does not occur when assuming that (X + c) >= X is always true [-Wstrict-overflow] if (start <= end) --- src/gallium/drivers/r600/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/r600/Makefile.am b/src/gallium/drivers/r600/Makefile.am index bf45fbf7b20..1138de985dd 100644 --- a/src/gallium/drivers/r600/Makefile.am +++ b/src/gallium/drivers/r600/Makefile.am @@ -10,7 +10,7 @@ AM_CFLAGS = \ $(GALLIUM_DRIVER_CFLAGS) \ $(RADEON_CFLAGS) \ $(LIBELF_CFLAGS) \ - -I$(top_srcdir)/src/amd/common + -I$(top_srcdir)/src/amd/common -Wstrict-overflow=0 AM_CXXFLAGS = \ $(GALLIUM_DRIVER_CXXFLAGS) \ -- 2.30.2