summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2011-07-11 14:08:24 -0700
committerBrian Paul <brianp@vmware.com>2011-12-05 08:57:42 -0700
commit32f4a83fe894941be26505c9c65c2d9e3d1f0da8 (patch)
tree4a684250db74d850b58e2ffb0e2c99d6469f76b4
parent2c1998b3b9777def30f711a12c4605116dca4f9b (diff)
gallivm: Re-enable LLVMUnionTypeKind case for llvm-2.7 only.
LLVMUnionTypeKind is not in llvm-2.6, llvm-2.8, llvm-2.9, or llvm-3.0svn. (cherry picked from commit 1844ae7e7e2285f52dc0ecd42194ccc47e3137ef)
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_type.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_type.c b/src/gallium/auxiliary/gallivm/lp_bld_type.c
index 11a2b055cc2..efd159f8869 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_type.c
+++ b/src/gallium/auxiliary/gallivm/lp_bld_type.c
@@ -333,10 +333,10 @@ lp_typekind_name(LLVMTypeKind t)
return "LLVMVectorTypeKind";
case LLVMMetadataTypeKind:
return "LLVMMetadataTypeKind";
- /* Only in LLVM 2.7 and later???
+#if HAVE_LLVM == 0x0207
case LLVMUnionTypeKind:
return "LLVMUnionTypeKind";
- */
+#endif
default:
return "unknown LLVMTypeKind";
}