Fix LLVM related headers to compile standalone (to fix cpluspluscheck).

Andres Freund <andres@anarazel.de>

Commit: 6a5c0bb6abbfa987ac065789b50240e485b75725
Author: Andres Freund <andres@anarazel.de>
Date: 2019-01-29T02:14:45Z
Releases: 11.2
Fix LLVM related headers to compile standalone (to fix cpluspluscheck).

Previously llvmjit.h #error'ed when USE_LLVM was not defined, to
prevent it from being included from code not having #ifdef USE_LLVM
guards - but that's not actually that useful after, during the
development of JIT support, LLVM related code was moved into a
separately compiled .so.  Having that #error means cpluspluscheck
doesn't work when llvm support isn't enabled, which isn't great.

Similarly add USE_LLVM guards to llvmjit_emit.h, and additionally make
sure it compiles standalone.

Per complaint from Tom Lane.

Author: Andres Freund
Discussion: https://postgr.es/m/19808.1548692361@sss.pgh.pa.us
Backpatch: 11, where JIT support was added

Files

PathChange+/−
src/include/jit/llvmjit_emit.h modified +9 −0
src/include/jit/llvmjit.h modified +6 −3

Discussion