Fix compilation on armv7l with gcc 11.2.0

Cc: mesa-stable
Reviewed-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12810>
This commit is contained in:
satmandu 2021-09-10 20:58:09 +00:00 committed by Marge Bot
parent d2711f9b61
commit d27805753f

View file

@ -106,12 +106,14 @@ extern bool fd_binning_enabled;
#include <unistd.h>
#include <sys/types.h>
#include <sys/syscall.h>
#define DBG(fmt, ...) \
do { \
if (FD_DBG(MSGS)) \
mesa_logi("%5d: %s:%d: " fmt, gettid(), __FUNCTION__, __LINE__, \
##__VA_ARGS__); \
mesa_logi("%5d: %s:%d: " fmt, ((pid_t)syscall(SYS_gettid)), \
__FUNCTION__, __LINE__, \
##__VA_ARGS__); \
} while (0)
#define perf_debug_message(debug, type, ...) \