From 56380e9aeddd63b46310c8f7d1ccf766e246ff5d Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Sun, 11 May 2025 12:33:46 -0500 Subject: [PATCH] build: suppress redundant-move complaing from gcc 13.3 for llvm-18 --- xo-jit/include/xo/jit/Jit.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/xo-jit/include/xo/jit/Jit.hpp b/xo-jit/include/xo/jit/Jit.hpp index 5130b844..e725fbeb 100644 --- a/xo-jit/include/xo/jit/Jit.hpp +++ b/xo-jit/include/xo/jit/Jit.hpp @@ -6,6 +6,7 @@ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wredundant-move" # include "llvm/ADT/StringRef.h" # include "llvm/ExecutionEngine/JITSymbol.h" # include "llvm/ExecutionEngine/Orc/CompileUtils.h"