diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2013-04-23 10:57:54 -0400 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2013-04-23 11:53:05 -0400 |
commit | ead4db420e9e5408f41c70768a290592a384aedb (patch) | |
tree | 10cb3a3f4f8e10f2b0af1d8bc6b6e2a7d9718e2e /src | |
parent | 1fb8c3ce5568e08a176929a4b27d2889599ede7c (diff) | |
download | external_mesa3d-ead4db420e9e5408f41c70768a290592a384aedb.zip external_mesa3d-ead4db420e9e5408f41c70768a290592a384aedb.tar.gz external_mesa3d-ead4db420e9e5408f41c70768a290592a384aedb.tar.bz2 |
gallivm: Fix build with LLVM >= r180063
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_debug.cpp | 4 | ||||
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp index ac8e10b..86617d4 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp @@ -56,6 +56,10 @@ #include <llvm/MC/MCRegisterInfo.h> #endif /* HAVE_LLVM >= 0x0301 */ +#if HAVE_LLVM >= 0x0303 +#include <llvm/ADT/OwningPtr.h> +#endif + #include "util/u_math.h" #include "util/u_debug.h" diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp index 024819e..717afa7 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp @@ -67,6 +67,10 @@ #include <llvm/Target/TargetSelect.h> #endif /* HAVE_LLVM < 0x0300 */ +#if HAVE_LLVM >= 0x0303 +#include <llvm/Wrap.h> +#endif + #include "pipe/p_config.h" #include "util/u_debug.h" #include "util/u_cpu_detect.h" |