diff options
author | Vinson Lee <[email protected]> | 2011-03-25 12:47:06 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2011-03-25 12:47:06 -0700 |
commit | eb0dd370945b9e3f5eb548a1a4a8184bb0e604fc (patch) | |
tree | 09019d4ebb1090d541099b580c451750a5076070 /src/gallium/auxiliary/gallivm | |
parent | dfdff940b6cb69b882595e16cdab12b9f440c201 (diff) |
gallivm: Fix build with llvm-2.9.
In llvm-2.9, the header file llvm/System/Host.h has been moved to
llvm/Support/Host.h.
Diffstat (limited to 'src/gallium/auxiliary/gallivm')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_debug.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp index bb2c82fe0ed..1f24cb6f572 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp @@ -32,7 +32,12 @@ #include <llvm/Target/TargetInstrInfo.h> #include <llvm/Support/raw_ostream.h> #include <llvm/Support/MemoryObject.h> + +#if HAVE_LLVM >= 0x0209 +#include <llvm/Support/Host.h> +#else #include <llvm/System/Host.h> +#endif #if HAVE_LLVM >= 0x0207 #include <llvm/MC/MCDisassembler.h> |