Module: Mesa
Branch: master
Commit: fb049742d640aef3aa585d9f51cc82914d9e9835
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=fb049742d640aef3aa585d9f51cc82914d9e9835

Author: Marek Olšák <[email protected]>
Date:   Wed Jul 18 17:47:54 2018 -0400

r600: silence the signed overflow warning like radeonsi

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 bf45fbf7b2..1138de985d 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) \

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to