Module: Mesa Branch: 9.1 Commit: 7b988cf2dee7eb7766125e7b897253815c03c7de URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7b988cf2dee7eb7766125e7b897253815c03c7de
Author: Armin K <[email protected]> Date: Thu May 2 12:55:04 2013 +0200 gallivm: Fix build with LLVM 3.3 Reviewed-by: Tom Stellard <[email protected]> (cherry picked from commit 4742f9b00b804dd01eb9955dd386a2373cd8eb36) --- src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp index a53548d..49149f1 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp @@ -61,7 +61,9 @@ #endif /* HAVE_LLVM < 0x0300 */ #if HAVE_LLVM >= 0x0303 -#include <llvm/Wrap.h> +#include <llvm/IR/IRBuilder.h> +#include <llvm/IR/Module.h> +#include <llvm/Support/CBindingWrapping.h> #endif #include "pipe/p_config.h" _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
