From 589622a2fe1bbfb2564fae497e99a3bcb4a3e069 Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Mon, 30 Apr 2018 23:57:23 -0700 Subject: swr/rast: Fix WriteBitcodeToFile usage with llvm-7.0. Fix build error after llvm-7.0svn r325155 ("Pass a reference to a module to the bitcode writer."). CXX rasterizer/jitter/libmesaswr_la-JitManager.lo rasterizer/jitter/JitManager.cpp:548:30: error: reference to type 'const llvm::Module' could not bind to an lvalue of type 'const llvm::Module *' llvm::WriteBitcodeToFile(M, bitcodeStream); ^ Suggested-by: George Kyriazis Signed-off-by: Vinson Lee Reviewed-By: George Kyriazis --- src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/gallium') diff --git a/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp b/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp index aadcca25550..efb747abdee 100644 --- a/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp +++ b/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp @@ -545,7 +545,11 @@ static inline uint32_t ComputeModuleCRC(const llvm::Module* M) std::string bitcodeBuffer; raw_string_ostream bitcodeStream(bitcodeBuffer); +#if LLVM_VERSION_MAJOR >= 7 + llvm::WriteBitcodeToFile(*M, bitcodeStream); +#else llvm::WriteBitcodeToFile(M, bitcodeStream); +#endif //M->print(bitcodeStream, nullptr, false); bitcodeStream.flush(); -- cgit v1.2.3