]> granicus.if.org Git - postgresql/commitdiff
Avoid macro clash with LLVM 9.
authorThomas Munro <tmunro@postgresql.org>
Sun, 28 Jul 2019 22:12:37 +0000 (10:12 +1200)
committerThomas Munro <tmunro@postgresql.org>
Sun, 28 Jul 2019 22:23:55 +0000 (10:23 +1200)
Early previews of LLVM 9 reveal that our Min() macro causes compiler
errors in LLVM headers reached by the #include directives in
llvmjit_inline.cpp.  Let's just undefine it.  Per buildfarm animal
seawasp.  Back-patch to 11.

Reviewed-by: Fabien Coelho, Tom Lane
Discussion: https://postgr.es/m/20190606173216.GA6306%40alvherre.pgsql

src/backend/jit/llvm/llvmjit_inline.cpp

index 8005d43a8498629a8259b69ab6f8177df0d73001..0513998b0212b3d0e1aa65e8493c30146594c324 100644 (file)
@@ -42,6 +42,9 @@ extern "C"
 #include <llvm-c/Core.h>
 #include <llvm-c/BitReader.h>
 
+/* Avoid macro clash with LLVM's C++ headers */
+#undef Min
+
 #include <llvm/ADT/SetVector.h>
 #include <llvm/ADT/StringSet.h>
 #include <llvm/ADT/StringMap.h>