summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin K <krejzi@email.com>2013-05-02 12:55:04 +0200
committerTom Stellard <thomas.stellard@amd.com>2013-05-02 09:00:37 -0700
commit4742f9b00b804dd01eb9955dd386a2373cd8eb36 (patch)
tree57108b9dfc740c21289c6fc6bd87ef25adb412dd
parentfcfbf4a19f0372cc3f96729b08537fcd5f0355e5 (diff)
gallivm: Fix build with LLVM 3.3
Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_misc.cpp4
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 717afa78074..a531d98e881 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
+++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
@@ -68,7 +68,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"